CMake is an open-source, cross-platform family of tools designed to build, test and package software. CMake is used to control the software compilation process using simple platform and compiler independent configuration files, and generate native makefiles and workspaces that can be used in the compiler environment of your choice.
-
Open your terminal, input
cmake --version, if the cmake version is lower than 3.1, please upgrade -
You should use out-of-source build, that is said you need to create a different directory from
cocos2d-xto execute cmake command.
cd cocos2d-x
mkdir linux-build && cd linux-build
cmake ..
makeExecute make help to see all build targets, make <target> build specified target
cd cocos2d-x
mkdir win32-build && cd win32-build
cmake .. -G"Visual Studio 15 2017" -Tv141Execute cmake --build . to compile, or open Cocos2d-x.sln in Explorer to use the generated project.
cd cocos2d-x
mkdir mac-build && cd msc-build
cmake .. -GXcode
open Cocos2d-x.xcodeprojcd cocos2d-x
mkdir ios-build && cd ios-build
cmake .. -GXcode -DCMAKE_TOOLCHAIN_FILE=../cmake/ios.toolchain.cmake
open Cocos2d-x.xcodeprojWe use the Gradle to Android applacition, and Gradle use cmake to build the native code, see the property: PROP_NDK_MODE, it control the way of native build
# android cmake support
# uncomment it, native code will build by cmake
# keep comment, native code will build by ndkBuild
PROP_NDK_MODE=cmakeIf you want to add cmake build arguments, please add it at externalNativeBuild block of [app/build.gradle] file.
To solve the problem that compiling engine sources spends too long time, we add the feature of pre-builds libs. Using this feature you only need build engine sources once for a specific environment.
This is an example of build cpp libs once, and use it in different cpp project.
cocos new -l cpp -p my.pack.app1 test_app1
mkdir app1_build && cd app1_build
cmake ../test_app1 -DGEN_COCOS_PREBUILT=ON
make prebuiltClose option GEN_COCOS_PREBUILT and open USE_COCOS_PREBUILT to use prebuilt in the same project
cmake ../test_app1 -DGEN_COCOS_PREBUILT=OFF -DUSE_COCOS_PREBUILT=ON
make TemplateCpp
open bin/TemplateCpp.appAdd -DUSE_COCOS_PREBUILT=ON to use prebuilt libs in another cmake build.
cocos new -l cpp -p my.pack.app2 test_app2
mkdir app2_build && cd app2_build
cmake ../test_app2 -DUSE_COCOS_PREBUILT=ON
make TemplateCpp
open bin/TemplateCpp.appAny other cpp project can use prebuilt in this way
Using this feature on Android exists a little difference, for CMake can't find system environment when build in Gradle. So you need to supply a path as the location of prebuilt libs.
-
-G, generate native build project you specified, for example-GXcodegenerate Xcode project files.-GVisual Studio 15 2017generate Visual Studio 2017 project, the default toolset is v141, add-Toption to specify toolset, like this-Tv140
-
CMAKE_BUILD_TYPE, specify the build mode, Debug or Release-DCMAKE_BUILD_TYPE=Releaseto generate the Release mode project, the default build mode is Debug
-
-H -B,-Hspecify the CMake project Home directory,-Bspecify CMake-generated project binary directory. for example-H..\cocos2d-x -Bmsvc_buildthe generated native project's location will bemsvc_builddirectory.
-
--build <dir>, build a CMake-generated project binary tree, for examplecmake --build ./msvc_build, cmake will sellect corresponding build tools.
-
GEN_COCOS_PREBUILT, control the project have the feature to generate pre-build libraries or not. Default value isOFF-DGEN_COCOS_PREBUILT=ON, will add target prebuilt, build this target will generate prebuilt libraries
-
USE_COCOS_PREBUILT, control the project have the feature to use pre-build libraries or not. Default value isOFF-DUSE_COCOS_PREBUILT=ON, will disable libraries target, and make app target use prebuilt libraries
-
COCOS_PREBUILT_ROOT, a path means the prebuilt libraries root location, it's not optional for Android Project on Android Studio, optional for other supported platforms. the default value is $cocos2dx_root/prebuilt if the cmake can access to cocos2d-x environment variable. for examplearguments "-DCOCOS_PREBUILT_ROOT=/Users/laptop/cocos-prebuilt"set this value on cmake block of build.gradle file.
-
Any options in SelectModule.cmake can be set manually. Do it if you know what you're doing.
-
Official website: cmake.org
-
Documentation: cmake.org/documentation
-
CMake FAQ: Wiki/CMake_FAQ