[CMAKE] Use CMake 3.17 default policies. CORE-17109
[reactos.git] / CMakeLists.txt
1
2 cmake_minimum_required(VERSION 3.17.0)
3
4 if(NOT CMAKE_VERSION MATCHES "ReactOS")
5 message(WARNING "Building with \"${CMAKE_COMMAND}\", which is not the custom CMake included in RosBE, might cause build issues...")
6 endif()
7
8 project(REACTOS)
9
10 # Versioning
11 include(sdk/include/reactos/version.cmake)
12
13 set(CMAKE_INCLUDE_CURRENT_DIR ON)
14 set(CMAKE_INCLUDE_DIRECTORIES_PROJECT_BEFORE ON)
15 set(CMAKE_SHARED_LIBRARY_PREFIX "")
16 set(CMAKE_SHARED_MODULE_PREFIX "")
17 set(CMAKE_SKIP_PREPROCESSED_SOURCE_RULES TRUE)
18 set(CMAKE_SKIP_ASSEMBLY_SOURCE_RULES TRUE)
19 set(CMAKE_COLOR_MAKEFILE OFF)
20 set(CMAKE_POSITION_INDEPENDENT_CODE OFF)
21 #set_property(GLOBAL PROPERTY RULE_MESSAGES OFF)
22
23 if(NOT ARCH)
24 set(ARCH i386)
25 endif()
26 # Now the ARCH variable will be in lowercase.
27 # It is needed because STREQUAL comparison
28 # is case-sensitive.
29 # See http://cmake.3232098.n2.nabble.com/Case-insensitive-string-compare-td7580269.html
30 # for more information.
31 string(TOLOWER ${ARCH} ARCH)
32
33 # Compile options
34 if(ARCH STREQUAL "i386")
35 include(sdk/cmake/config.cmake)
36 elseif(ARCH STREQUAL "amd64")
37 include(sdk/cmake/config-amd64.cmake)
38 elseif(ARCH STREQUAL "arm")
39 include(sdk/cmake/config-arm.cmake)
40 endif()
41
42 # Compiler flags handling
43 include(sdk/cmake/compilerflags.cmake)
44
45 add_definitions(-D__REACTOS__)
46
47 # Double escape, since CMake unescapes before putting it on the command-line, where it's unescaped again by GCC/CL.
48 add_definitions(-DREACTOS_SOURCE_DIR="${REACTOS_SOURCE_DIR}")
49 add_definitions(-DREACTOS_BINARY_DIR="${REACTOS_BINARY_DIR}")
50
51 # There doesn't seem to be a standard for __FILE__ being relative or absolute, so detect it at runtime.
52 file(RELATIVE_PATH _PATH_PREFIX ${REACTOS_BINARY_DIR} ${REACTOS_SOURCE_DIR})
53 add_compile_flags(-D__RELFILE__="&__FILE__[__FILE__[0] == '.' ? sizeof \\\"${_PATH_PREFIX}\\\" - 1 : sizeof REACTOS_SOURCE_DIR]")
54
55 if(MSVC_IDE)
56 add_compile_flags("/MP")
57 endif()
58
59 # Bison and Flex support
60 # include(sdk/cmake/bison-flex.cmake)
61
62 if(NOT CMAKE_CROSSCOMPILING)
63 set(TOOLS_FOLDER ${CMAKE_CURRENT_BINARY_DIR})
64 add_definitions(-DTARGET_${ARCH})
65
66 if(MSVC)
67 if(ARCH STREQUAL "i386")
68 add_definitions(/D_X86_ /D__i386__ /DWIN32 /D_WINDOWS)
69 elseif(ARCH STREQUAL "amd64")
70 add_definitions(-D_AMD64_ -D__x86_64__ /DWIN32 -D_WINDOWS)
71 endif()
72 if(MSVC_VERSION GREATER 1699)
73 add_definitions(/D_ALLOW_KEYWORD_MACROS)
74 endif()
75 if(NOT USE_CLANG_CL)
76 # FIXME: Inspect
77 add_definitions(/Dinline=__inline)
78 endif()
79 endif()
80 add_subdirectory(sdk/include/host)
81
82 if(NOT MSVC)
83 add_subdirectory(dll/win32/dbghelp)
84 endif()
85 add_subdirectory(sdk/tools)
86 add_subdirectory(sdk/lib)
87
88 set(NATIVE_TARGETS bin2c widl gendib cabman fatten hpp isohybrid mkhive mkisofs obj2bin spec2def geninc mkshelllink utf16le xml2sdb)
89 if(NOT MSVC)
90 list(APPEND NATIVE_TARGETS rsym pefixup)
91 endif()
92
93 export(TARGETS ${NATIVE_TARGETS} FILE ${CMAKE_BINARY_DIR}/ImportExecutables.cmake NAMESPACE native- )
94 configure_file(sdk/cmake/host-tools.in ${CMAKE_BINARY_DIR}/TargetList.cmake)
95
96 else()
97 # Add host tools target
98 include(sdk/cmake/host-tools.cmake)
99 setup_host_tools()
100
101 # We don't need CMake importlib handling.
102 unset(CMAKE_IMPORT_LIBRARY_SUFFIX)
103
104 # Print build type
105 message("-- Build Type: ${CMAKE_BUILD_TYPE}")
106
107 # adjust the default behaviour of the FIND_XXX() commands:
108 # search headers and libraries in the target environment, search
109 # programs in the host environment
110 set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
111 set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY NEVER)
112 set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE NEVER)
113
114 #useful stuff!
115 include(CMakeParseArguments)
116
117 if(DBG)
118 add_definitions(-DDBG=1 -D_SEH_ENABLE_TRACE)
119 else()
120 add_definitions(-DDBG=0)
121 endif()
122
123 if(KDBG)
124 add_definitions(-DKDBG)
125 endif()
126
127 if(_WINKD_)
128 add_definitions(-D_WINKD_)
129 endif()
130
131 if(ENABLE_CCACHE)
132 message(WARNING "-- Disabling precompiled headers support (ccache).")
133 option(PCH "Whether to use precompiled headers" OFF)
134 elseif(CMAKE_VERSION VERSION_LESS 3.16.0)
135 message(WARNING "-- Disabling precompiled headers support due to this unsupported CMake version: ${CMAKE_VERSION}.")
136 option(PCH "Whether to use precompiled headers" OFF)
137 elseif(GCC)
138 message(WARNING "-- Disabling precompiled headers on GCC by default CORE-17108.")
139 option(PCH "Whether to use precompiled headers" OFF)
140 else()
141 option(PCH "Whether to use precompiled headers" ON)
142 endif()
143
144 # Version Options
145 add_definitions(-DWINVER=0x502
146 -D_WIN32_IE=0x600
147 -D_WIN32_WINNT=0x502
148 -D_WIN32_WINDOWS=0x502
149 -D_SETUPAPI_VER=0x502
150 -DMINGW_HAS_SECURE_API=1)
151
152 # Arch Options
153 if(ARCH STREQUAL "i386")
154 if(NOT USE_CLANG_CL)
155 add_definitions(-D_M_IX86)
156 endif()
157 add_definitions(-D_X86_ -D__i386__ -Di386)
158 if(SARCH STREQUAL "xbox")
159 add_definitions(-DSARCH_XBOX)
160 elseif(SARCH STREQUAL "pc98")
161 add_definitions(-DSARCH_PC98)
162 endif()
163 elseif(ARCH STREQUAL "amd64")
164 add_definitions(-D_M_AMD64 -D_AMD64_ -D__x86_64__ -D_WIN64)
165 elseif(ARCH STREQUAL "arm")
166 # _M_ARM is already defined by toolchain
167 add_definitions(-D_ARM_ -D__arm__ -DWIN32)
168 if(SARCH STREQUAL "omap-zoom2")
169 add_definitions(-D_ZOOM2_)
170 endif()
171 endif()
172
173 # Other
174 add_definitions(-D_NEW_DELETE_OPERATORS_)
175 if(ARCH STREQUAL "i386")
176 add_definitions(-DUSE_COMPILER_EXCEPTIONS -D_USE_32BIT_TIME_T)
177 elseif(ARCH STREQUAL "amd64")
178 add_definitions(-DUSE_COMPILER_EXCEPTIONS -DNO_UNDERSCORE_PREFIX)
179 elseif(ARCH STREQUAL "arm")
180 add_definitions(-DUSE_COMPILER_EXCEPTIONS -DNO_UNDERSCORE_PREFIX)
181 endif()
182
183 # Activate support for assembly source files
184 enable_language(ASM)
185
186 # Activate language support for resource files
187 enable_language(RC)
188
189 # Localization definitions
190 include(sdk/cmake/localization.cmake)
191 set(I18N_DEFS "")
192 # This will set I18N_DEFS for later use
193 set_i18n_language(${I18N_LANG})
194
195 # Compiler specific definitions and macros
196 if(MSVC)
197 include(sdk/cmake/msvc.cmake)
198 else()
199 include(sdk/cmake/gcc.cmake)
200 endif()
201
202 # Generic macros
203 include(sdk/cmake/CMakeMacros.cmake)
204
205 # IDL macros for widl/midl
206 # We're using widl now for both MSVC and GCC builds
207 include(sdk/cmake/widl-support.cmake)
208
209 include_directories(
210 sdk/include
211 sdk/include/psdk
212 sdk/include/dxsdk
213 ${REACTOS_BINARY_DIR}/sdk/include
214 ${REACTOS_BINARY_DIR}/sdk/include/psdk
215 ${REACTOS_BINARY_DIR}/sdk/include/dxsdk
216 ${REACTOS_BINARY_DIR}/sdk/include/ddk
217 ${REACTOS_BINARY_DIR}/sdk/include/reactos
218 ${REACTOS_BINARY_DIR}/sdk/include/reactos/mc
219 sdk/include/crt
220 sdk/include/ddk
221 sdk/include/ndk
222 sdk/include/reactos
223 sdk/include/reactos/libs)
224
225 if(ARCH STREQUAL "arm")
226 include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/arm)
227 endif()
228
229 add_dependency_header()
230
231 add_subdirectory(sdk/include/ndk/tests)
232 add_subdirectory(sdk/include/xdk)
233 add_subdirectory(sdk/include/psdk)
234 add_subdirectory(sdk/include/dxsdk)
235 add_subdirectory(sdk/include/reactos/wine)
236 add_subdirectory(sdk/include/reactos/mc)
237 add_subdirectory(sdk/include/asm)
238
239 if(NO_ROSSYM)
240 include(sdk/cmake/baseaddress_dwarf.cmake)
241 elseif(MSVC)
242 include(sdk/cmake/baseaddress_msvc.cmake)
243 else()
244 include(sdk/cmake/baseaddress.cmake)
245 endif()
246
247 # For MSVC builds, this puts all debug symbols file in the same directory.
248 if(MSVC)
249 set(CMAKE_PDB_OUTPUT_DIRECTORY "${REACTOS_BINARY_DIR}/msvc_pdb")
250 elseif(SEPARATE_DBG)
251 set(CMAKE_PDB_OUTPUT_DIRECTORY "${REACTOS_BINARY_DIR}/symbols")
252 endif()
253
254 #begin with boot so reactos_cab target is defined before all other modules
255 add_subdirectory(boot)
256 add_subdirectory(base)
257 add_subdirectory(dll)
258 add_subdirectory(drivers)
259 add_subdirectory(hal)
260 add_subdirectory(sdk/lib)
261 add_subdirectory(media)
262 add_subdirectory(modules)
263 add_subdirectory(ntoskrnl)
264 add_subdirectory(subsystems)
265 add_subdirectory(sdk/tools/wpp)
266 add_subdirectory(win32ss)
267
268 # Create the registry hives
269 create_registry_hives()
270
271 # Create {bootcd, livecd, bootcdregtest}.lst
272 create_iso_lists()
273
274 file(MAKE_DIRECTORY ${REACTOS_BINARY_DIR}/sdk/include/reactos)
275
276 add_dependency_footer()
277 endif()