mirror of https://github.com/axmolengine/axmol.git
81 lines
2.6 KiB
CMake
81 lines
2.6 KiB
CMake
cmake_minimum_required(VERSION 3.10)
|
|
|
|
project(chipmunk)
|
|
|
|
# to change the prefix, run cmake with the parameter:
|
|
# -D CMAKE_INSTALL_PREFIX=/my/prefix
|
|
|
|
# to change the build type, run cmake with the parameter:
|
|
# -D CMAKE_BUILD_TYPE=<build-type>
|
|
# run "cmake --help-variable CMAKE_BUILD_TYPE" for details
|
|
if(NOT CMAKE_BUILD_TYPE)
|
|
SET(CMAKE_BUILD_TYPE Release CACHE STRING
|
|
"Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel."
|
|
FORCE)
|
|
endif()
|
|
|
|
# to manually select install locations of libraries and executables
|
|
# -D LIB_INSTALL_DIR mylib
|
|
# -D BIN_INSTALL_DIR newbin
|
|
set(LIB_INSTALL_DIR lib CACHE STRING "Install location of libraries")
|
|
set(BIN_INSTALL_DIR bin CACHE STRING "Install location of executables")
|
|
|
|
# other options for the build, you can i.e. activate the shared library by passing
|
|
# -D CP_BUILD_SHARED=ON
|
|
# to cmake. Other options analog
|
|
if(ANDROID)
|
|
option(CP_BUILD_DEMOS "Build the demo applications" OFF)
|
|
option(CP_INSTALL_DEMOS "Install the demo applications" OFF)
|
|
option(CP_BUILD_SHARED "Build and install the shared library" ON)
|
|
option(CP_BUILD_STATIC "Build as static library" ON)
|
|
option(CP_INSTALL_STATIC "Install the static library" OFF)
|
|
else()
|
|
option(CP_BUILD_DEMOS "Build the demo applications" ON)
|
|
option(CP_INSTALL_DEMOS "Install the demo applications" OFF)
|
|
option(CP_BUILD_SHARED "Build and install the shared library" ON)
|
|
option(CP_BUILD_STATIC "Build as static library" ON)
|
|
option(CP_INSTALL_STATIC "Install the static library" ON)
|
|
endif()
|
|
|
|
option(CP_USE_DOUBLES ON)
|
|
if(NOT CP_USE_DOUBLES)
|
|
add_definitions(-DCP_USE_DOUBLES=0)
|
|
endif()
|
|
|
|
if(CMAKE_C_COMPILER_ID STREQUAL "Clang")
|
|
option(FORCE_CLANG_BLOCKS "Force enable Clang blocks" YES)
|
|
endif()
|
|
|
|
# sanity checks...
|
|
if(CP_INSTALL_DEMOS)
|
|
set(CP_BUILD_DEMOS ON FORCE)
|
|
endif()
|
|
|
|
# these need the static lib too
|
|
if(CP_BUILD_DEMOS OR CP_INSTALL_STATIC)
|
|
set(CP_BUILD_STATIC ON FORCE)
|
|
endif()
|
|
|
|
if(NOT MSVC)
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99") # always use gnu99
|
|
if(FORCE_CLANG_BLOCKS)
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fblocks")
|
|
endif()
|
|
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -ffast-math") # extend release-profile with fast-math
|
|
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -Wall") # extend debug-profile with -Wall
|
|
endif()
|
|
|
|
add_subdirectory(src)
|
|
|
|
if(CP_BUILD_DEMOS)
|
|
add_subdirectory(demo)
|
|
endif()
|
|
|
|
if(CP_BUILD_STATIC)
|
|
set_target_properties(chipmunk
|
|
PROPERTIES
|
|
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
|
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
|
FOLDER "External"
|
|
)
|
|
endif() |