Build cmftStudio from source
masterTo build the project from the source code, clone the repository with submodules and use make.
git clone --recurse-submodules http://github.com/dariomanesku/cmftStudio.git
cd cmftStudio
makePlatform Specific Build Instructions
Linux
Build the debug 64-bit version using:
make linux-debug64To run the application, you must be in the runtime directory so it can find the configuration file:
cd runtime
./../_build/linux64_gcc/bin/cmftStudioDebugOS X (Xcode)
- Open the Xcode solution located in
_projects/xcode4/. - Select your desired build configuration (debug/release, 32/64bit).
- To ensure a 64-bit build, set
Build Settings -> Architectures -> Standard Architectures (64-bit Intel) (x86_64). - Important: You must manually set the working directory to the
runtime/folder. Go toProduct -> Scheme -> Edit Scheme... -> Run cmftDebug -> Options -> Working Directory (Use custom working directory)and specify theruntime/directory from the cmft root folder.
OS X (Makefile)
Build from the root directory using:
make osx-release64(or similar release commands).