Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install cinder C++ on ubuntu

I used this command to install cinder on ubuntu 12.04 :

git clone -b dev --recursive git://github.com/cinder/Cinder.git cinder_master 

Now I have a folder cinder_master created with a bunch of folders in it. I know it will sound stupid but how to start cinder or do I need something else to do ?

Thank you !

like image 935
user3009269 Avatar asked Jan 10 '23 22:01

user3009269


1 Answers

Supposing you followed the instructions from http://libcinder.org/docs/welcome/GitSetup.html ... According to the site

"Cinder is free, open-source and available for Mac OS X, iOS and Windows."

So no ubuntu is supported out of the box.

When I look at the source it has some very deep dependencies to Windows and Mac internals, such as:

#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

so no Linux branch. However you could get "in touch" with cinder developers, ask them if they plan to provide Linux support ... Maybe volunteer yourself for it?

like image 140
Ferenc Deak Avatar answered Jan 17 '23 16:01

Ferenc Deak