我使用以下命令在ubuntu 12.04上安装cinder:
git clone -b dev --recursive git://github.com/cinder/Cinder.git cinder_master 现在我创建了一个文件夹cinder_master,里面有一堆文件夹。我知道这听起来很愚蠢,但是如何启动cinder,或者我需要做其他事情吗?
谢谢!
发布于 2014-03-25 04:15:27
假设你听从了http://libcinder.org/docs/welcome/GitSetup.html的指示...据该网站介绍
Cinder是免费的,开源的,可以在Mac,iOS和
上使用。
所以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支持……也许你自己也可以做志愿者呢?
发布于 2015-01-03 08:53:04
这是最近一次讨论的一个很好的线索:
https://forum.libcinder.org/topic/next-steps-for-the-linux-fork
linux-dev-glfw3分支可以工作,但是在这一点上已经过时了,因为cinder_master正在使用GLNext。
发布于 2014-03-27 05:59:31
正如fritzone所说,目前还没有在Linux上运行的版本,但是有一些开发(希望)正在发生。
https://forum.libcinder.org/topic/basicapp-in-linux
可能也适用于Android。
https://stackoverflow.com/questions/22619504
复制相似问题