1
1
cmake_minimum_required (VERSION 3.15)
2
2
3
- include (CheckIncludeFileCXX )
3
+ include (CheckSymbolExists )
4
4
include (CheckIPOSupported)
5
5
6
6
project (ninja)
@@ -18,16 +18,18 @@ endif()
18
18
# --- compiler flags
19
19
if (MSVC )
20
20
set (CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>" )
21
- string (APPEND CMAKE_CXX_FLAGS " /W4 /GR- /Zc:__cplusplus" )
21
+ string (REPLACE "/GR" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} )
22
+ add_compile_options (/W4 /wd4100 /wd4267 /wd4706 /wd4702 /wd4244 /GR- /Zc:__cplusplus)
23
+ add_compile_definitions (_CRT_SECURE_NO_WARNINGS)
22
24
else ()
23
25
include (CheckCXXCompilerFlag)
24
26
check_cxx_compiler_flag(-Wno-deprecated flag_no_deprecated)
25
27
if (flag_no_deprecated)
26
- string ( APPEND CMAKE_CXX_FLAGS " -Wno-deprecated" )
28
+ add_compile_options ( -Wno-deprecated)
27
29
endif ()
28
30
check_cxx_compiler_flag(-fdiagnostics-color flag_color_diag)
29
31
if (flag_color_diag)
30
- string ( APPEND CMAKE_CXX_FLAGS " -fdiagnostics-color" )
32
+ add_compile_options ( -fdiagnostics-color)
31
33
endif ()
32
34
endif ()
33
35
@@ -37,7 +39,7 @@ if(RE2C)
37
39
# the depfile parser and ninja lexers are generated using re2c.
38
40
function (re2c IN OUT)
39
41
add_custom_command (DEPENDS ${IN} OUTPUT ${OUT}
40
- COMMAND ${RE2C} -b -i --no -generation-date -o ${OUT} ${IN}
42
+ COMMAND ${RE2C} -b -i --no -generation-date -- no - version - o ${OUT} ${IN}
41
43
)
42
44
endfunction ()
43
45
re2c(${PROJECT_SOURCE_DIR} /src/depfile_parser.in.cc ${PROJECT_BINARY_DIR} /depfile_parser.cc)
@@ -53,22 +55,35 @@ target_include_directories(libninja-re2c PRIVATE src)
53
55
function (check_platform_supports_browse_mode RESULT)
54
56
# Make sure the inline.sh script works on this platform.
55
57
# It uses the shell commands such as 'od', which may not be available.
58
+
56
59
execute_process (
57
60
COMMAND sh -c "echo 'TEST' | src/inline.sh var"
58
- WORKING_DIRECTORY ${CMAKE_SOURCE_DIR }
61
+ WORKING_DIRECTORY ${PROJECT_SOURCE_DIR }
59
62
RESULT_VARIABLE inline_result
60
63
OUTPUT_QUIET
61
64
ERROR_QUIET
62
65
)
63
66
if (NOT inline_result EQUAL "0" )
64
67
# The inline script failed, so browse mode is not supported.
65
68
set (${RESULT} "0" PARENT_SCOPE)
69
+ if (NOT WIN32 )
70
+ message (WARNING "browse feature omitted due to inline script failure" )
71
+ endif ()
66
72
return ()
67
73
endif ()
68
74
69
75
# Now check availability of the unistd header
70
- check_include_file_cxx(unistd.h PLATFORM_HAS_UNISTD_HEADER)
71
- set (${RESULT} "${PLATFORM_HAS_UNISTD_HEADER} " PARENT_SCOPE)
76
+ check_symbol_exists(fork "unistd.h" HAVE_FORK)
77
+ check_symbol_exists(pipe "unistd.h" HAVE_PIPE)
78
+ set (browse_supported 0)
79
+ if (HAVE_FORK AND HAVE_PIPE)
80
+ set (browse_supported 1)
81
+ endif ()
82
+ set (${RESULT} "${browse_supported} " PARENT_SCOPE)
83
+ if (NOT browse_supported)
84
+ message (WARNING "browse feature omitted due to missing `fork` and `pipe` functions" )
85
+ endif ()
86
+
72
87
endfunction ()
73
88
74
89
check_platform_supports_browse_mode(platform_supports_ninja_browse)
@@ -88,11 +103,14 @@ add_library(libninja OBJECT
88
103
src/eval_env.cc
89
104
src/graph.cc
90
105
src/graphviz.cc
106
+ src/json.cc
91
107
src/line_printer.cc
92
108
src/manifest_parser.cc
93
109
src/metrics.cc
110
+ src/missing_deps.cc
94
111
src/parser.cc
95
112
src/state.cc
113
+ src/status .cc
96
114
src/string_piece_util.cc
97
115
src/util.cc
98
116
src/version .cc
@@ -104,10 +122,8 @@ if(WIN32)
104
122
src/msvc_helper-win32 .cc
105
123
src/msvc_helper_main-win32 .cc
106
124
src/getopt.c
125
+ src/minidump-win32 .cc
107
126
)
108
- if (MSVC )
109
- target_sources (libninja PRIVATE src/minidump-win32 .cc)
110
- endif ()
111
127
else ()
112
128
target_sources (libninja PRIVATE src/subprocess-posix.cc)
113
129
if (CMAKE_SYSTEM_NAME STREQUAL "OS400" OR CMAKE_SYSTEM_NAME STREQUAL "AIX" )
@@ -128,13 +144,17 @@ endif()
128
144
# On IBM i (identified as "OS400" for compatibility reasons) and AIX, this fixes missing
129
145
# PRId64 (and others) at compile time in C++ sources
130
146
if (CMAKE_SYSTEM_NAME STREQUAL "OS400" OR CMAKE_SYSTEM_NAME STREQUAL "AIX" )
131
- string ( APPEND CMAKE_CXX_FLAGS " -D__STDC_FORMAT_MACROS" )
147
+ add_compile_definitions (__STDC_FORMAT_MACROS )
132
148
endif ()
133
149
134
150
# Main executable is library plus main() function.
135
151
add_executable (ninja src/ninja.cc)
136
152
target_link_libraries (ninja PRIVATE libninja libninja-re2c)
137
153
154
+ if (WIN32 )
155
+ target_sources (ninja PRIVATE windows/ninja.manifest)
156
+ endif ()
157
+
138
158
# Adds browse mode into the ninja binary if it's supported by the host platform.
139
159
if (platform_supports_ninja_browse)
140
160
# Inlines src/browse.py into the browse_py.h header, so that it can be included
@@ -143,20 +163,20 @@ if(platform_supports_ninja_browse)
143
163
OUTPUT build /browse_py.h
144
164
MAIN_DEPENDENCY src/browse.py
145
165
DEPENDS src/inline.sh
146
- COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR } /build
166
+ COMMAND ${CMAKE_COMMAND} -E make_directory ${PROJECT_BINARY_DIR } /build
147
167
COMMAND src/inline.sh kBrowsePy
148
168
< src/browse.py
149
- > ${CMAKE_BINARY_DIR } /build /browse_py.h
150
- WORKING_DIRECTORY ${CMAKE_SOURCE_DIR }
169
+ > ${PROJECT_BINARY_DIR } /build /browse_py.h
170
+ WORKING_DIRECTORY ${PROJECT_SOURCE_DIR }
151
171
VERBATIM
152
172
)
153
173
154
174
target_compile_definitions (ninja PRIVATE NINJA_HAVE_BROWSE)
155
175
target_sources (ninja PRIVATE src/browse.cc)
156
176
set_source_files_properties (src/browse.cc
157
177
PROPERTIES
158
- OBJECT_DEPENDS "${CMAKE_BINARY_DIR } /build/browse_py.h"
159
- INCLUDE_DIRECTORIES "${CMAKE_BINARY_DIR } "
178
+ OBJECT_DEPENDS "${PROJECT_BINARY_DIR } /build/browse_py.h"
179
+ INCLUDE_DIRECTORIES "${PROJECT_BINARY_DIR } "
160
180
COMPILE_DEFINITIONS NINJA_PYTHON="python"
161
181
)
162
182
endif ()
@@ -175,8 +195,10 @@ if(BUILD_TESTING)
175
195
src/dyndep_parser_test.cc
176
196
src/edit_distance_test.cc
177
197
src/graph_test.cc
198
+ src/json_test.cc
178
199
src/lexer_test.cc
179
200
src/manifest_parser_test.cc
201
+ src/missing_deps_test.cc
180
202
src/ninja_test.cc
181
203
src/state_test.cc
182
204
src/string_piece_util_test.cc
@@ -203,11 +225,11 @@ if(BUILD_TESTING)
203
225
204
226
if (CMAKE_SYSTEM_NAME STREQUAL "AIX" AND CMAKE_SIZEOF_VOID_P EQUAL 4)
205
227
# These tests require more memory than will fit in the standard AIX shared stack/heap (256M)
206
- target_link_libraries (hash_collision_bench PRIVATE "-Wl,-bmaxdata:0x80000000" )
207
- target_link_libraries (manifest_parser_perftest PRIVATE "-Wl,-bmaxdata:0x80000000" )
228
+ target_link_options (hash_collision_bench PRIVATE "-Wl,-bmaxdata:0x80000000" )
229
+ target_link_options (manifest_parser_perftest PRIVATE "-Wl,-bmaxdata:0x80000000" )
208
230
endif ()
209
231
210
- add_test (NinjaTest ninja_test)
232
+ add_test (NAME NinjaTest COMMAND ninja_test)
211
233
endif ()
212
234
213
- install (TARGETS ninja DESTINATION bin )
235
+ install (TARGETS ninja)
0 commit comments