-
Notifications
You must be signed in to change notification settings - Fork 352
/
CMakeLists.txt
67 lines (56 loc) · 2.19 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
cmake_minimum_required(VERSION 3.7)
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 BUILD_SHARED=ON
# to cmake. Other options analog
if(ANDROID)
option(BUILD_DEMOS "Build the demo applications" OFF)
option(INSTALL_DEMOS "Install the demo applications" OFF)
option(BUILD_SHARED "Build and install the shared library" ON)
option(BUILD_STATIC "Build as static library" ON)
option(INSTALL_STATIC "Install the static library" OFF)
else()
option(BUILD_DEMOS "Build the demo applications" ON)
option(INSTALL_DEMOS "Install the demo applications" OFF)
option(BUILD_SHARED "Build and install the shared library" ON)
option(BUILD_STATIC "Build as static library" ON)
option(INSTALL_STATIC "Install the static library" ON)
endif()
if(CMAKE_C_COMPILER_ID STREQUAL "Clang")
option(FORCE_CLANG_BLOCKS "Force enable Clang blocks" YES)
endif()
# sanity checks...
if(INSTALL_DEMOS)
set(BUILD_DEMOS ON FORCE)
endif()
# these need the static lib too
if(BUILD_DEMOS OR INSTALL_STATIC)
set(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(BUILD_DEMOS)
add_subdirectory(demo)
endif()