作者热门文章
- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我使用这个命令在 ubuntu 12.04 上安装了 cinder:
git clone -b dev --recursive git://github.com/cinder/Cinder.git cinder_master
现在我创建了一个文件夹 cinder_master,里面有一堆文件夹。我知道这听起来很愚蠢,但是如何启动 cinder 或者我需要做其他事情吗?
谢谢!
最佳答案
假设您按照 http://libcinder.org/docs/welcome/GitSetup.html 中的说明进行操作...根据网站
"Cinder is free, open-source and available for Mac OS X, iOS and Windows."
因此不支持开箱即用的 ubuntu。
当我查看源代码时,它对 Windows 和 Mac 内部结构有一些非常深的依赖性,例如:
#if defined( CINDER_MAC )
#include "cinder/cocoa/CinderCocoa.h"
#import <Cocoa/Cocoa.h>
#import <AppKit/NSPasteboard.h>
#import <AppKit/NSImage.h>
#elif defined( CINDER_COCOA_TOUCH )
#include "cinder/cocoa/CinderCocoa.h"
#include "cinder/cocoa/CinderCocoaTouch.h"
#import <UIKit/UIPasteboard.h>
#elif defined( CINDER_MSW )
#include <windows.h>
#include "cinder/msw/CinderMsw.h"
#include "cinder/msw/CinderMswGdiPlus.h"
#include "cinder/Utilities.h"
#include "cinder/ip/Fill.h"
#include "cinder/ip/Blend.h"
#include <set>
#endif
所以没有 Linux 分支。但是,您可以与 cinder 开发人员“联系”,询问他们是否计划提供 Linux 支持……也许您是自愿的?
关于c++ - 如何在ubuntu上安装cinder C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22619504/
我是一名优秀的程序员,十分优秀!