7d3cedd45228ef9553bf9bf0c2d9d9d2d40ffce9
[reactos.git] / reactos / cmake / msvc.cmake
1
2 #if(${CMAKE_BUILD_TYPE} STREQUAL "Debug")
3 if(CMAKE_BUILD_TYPE STREQUAL "Debug")
4 # no optimization
5 elseif(OPTIMIZE STREQUAL "1")
6 add_definitions(/O1)
7 elseif(OPTIMIZE STREQUAL "2")
8 add_definitions(/O2)
9 elseif(OPTIMIZE STREQUAL "3")
10 add_definitions(/Ot /Ox /GS-)
11 elseif(OPTIMIZE STREQUAL "4")
12 add_definitions(/Os /Ox /GS-)
13 elseif(OPTIMIZE STREQUAL "5")
14 add_definitions(/GF /Gy /Ob2 /Os /Ox /GS-)
15 endif()
16
17 if(ARCH STREQUAL "i386")
18 add_definitions(/DWIN32 /D_WINDOWS)
19 endif()
20
21 add_definitions(/Dinline=__inline /D__STDC__=1)
22
23 add_compile_flags("/X /GR- /EHs-c- /GS- /Zl /W3")
24
25 # HACK: for VS 11+ we need to explicitly disable SSE, which is off by
26 # default for older compilers. See CORE-6507
27 if(MSVC_VERSION GREATER 1699 AND ARCH STREQUAL "i386")
28 add_compile_flags("/arch:IA32")
29 endif ()
30
31 # VS 12+ requires /FS when used in parallel compilations
32 if(MSVC_VERSION GREATER 1799 AND NOT MSVC_IDE)
33 add_compile_flags("/FS")
34 endif ()
35
36 # Disable overly sensitive warnings as well as those that generally aren't
37 # useful to us.
38 # - TODO: C4018: signed/unsigned mismatch
39 # - TODO: C4244: integer truncation
40 # - C4290: C++ exception specification ignored
41 #add_compile_flags("/wd4018 /wd4244 /wd4290")
42 add_compile_flags("/wd4290")
43
44 # The following warnings are treated as errors:
45 # - C4013: implicit function declaration
46 # - C4020: too many actual parameters
47 # - C4022: pointer type mismatch for parameter
48 # - TODO: C4028: formal parameter different from declaration
49 # - C4047: different level of indirection
50 # - TODO: C4090: different 'modifier' qualifiers (for C programs only;
51 # for C++ programs, the compiler error C2440 is issued)
52 # - C4098: void function returning a value
53 # - C4113: parameter lists differ
54 # - C4129: unrecognized escape sequence
55 # - TODO: C4133: incompatible types
56 # - C4163: 'identifier': not available as an intrinsic function
57 # - C4229: modifiers on data are ignored
58 # - C4700: uninitialized variable usage
59 # - C4603: macro is not defined or definition is different after precompiled header use
60 add_compile_flags("/we4013 /we4020 /we4022 /we4047 /we4098 /we4113 /we4129 /we4163 /we4229 /we4700 /we4603")
61
62 # Enable warnings above the default level, but don't treat them as errors:
63 # - C4115: named type definition in parentheses
64 add_compile_flags("/w14115")
65
66 # Debugging
67 #if(${CMAKE_BUILD_TYPE} STREQUAL "Debug")
68 if(CMAKE_BUILD_TYPE STREQUAL "Debug")
69 if(NOT (_PREFAST_ OR _VS_ANALYZE_))
70 add_compile_flags("/Zi")
71 endif()
72 add_compile_flags("/Ob0 /Od")
73 #elseif(${CMAKE_BUILD_TYPE} STREQUAL "Release")
74 elseif(CMAKE_BUILD_TYPE STREQUAL "Release")
75 add_compile_flags("/Ob2 /D NDEBUG")
76 endif()
77
78 if(MSVC_IDE)
79 add_compile_flags("/MP")
80 if(NOT DEFINED USE_FOLDER_STRUCTURE)
81 set(USE_FOLDER_STRUCTURE FALSE)
82 endif()
83 endif()
84
85 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /MANIFEST:NO /INCREMENTAL:NO /SAFESEH:NO /NODEFAULTLIB /RELEASE")
86 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} /MANIFEST:NO /INCREMENTAL:NO /SAFESEH:NO /NODEFAULTLIB /RELEASE")
87 set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} /MANIFEST:NO /INCREMENTAL:NO /SAFESEH:NO /NODEFAULTLIB /RELEASE")
88
89 if(CMAKE_DISABLE_NINJA_DEPSLOG)
90 set(cl_includes_flag "")
91 else()
92 set(cl_includes_flag "/showIncludes")
93 endif()
94
95 if(MSVC_IDE AND (CMAKE_VERSION MATCHES "ReactOS"))
96 # For VS builds we'll only have en-US in resource files
97 add_definitions(/DLANGUAGE_EN_US)
98 else()
99 # Only VS 10+ resource compiler supports /nologo
100 if(MSVC_VERSION GREATER 1599)
101 set(rc_nologo_flag "/nologo")
102 else()
103 set(rc_nologo_flag)
104 endif()
105 set(CMAKE_RC_COMPILE_OBJECT "<CMAKE_RC_COMPILER> ${rc_nologo_flag} <FLAGS> <DEFINES> ${I18N_DEFS} /fo<OBJECT> <SOURCE>")
106 set(CMAKE_ASM_COMPILE_OBJECT
107 "cl ${cl_includes_flag} /nologo /X /I${REACTOS_SOURCE_DIR}/include/asm /I${REACTOS_BINARY_DIR}/include/asm <FLAGS> <DEFINES> /D__ASM__ /D_USE_ML /EP /c <SOURCE> > <OBJECT>.tmp"
108 "<CMAKE_ASM_COMPILER> /nologo /Cp /Fo<OBJECT> /c /Ta <OBJECT>.tmp")
109 endif()
110
111 if(_VS_ANALYZE_)
112 message("VS static analysis enabled!")
113 add_compile_flags("/analyze")
114 elseif(_PREFAST_)
115 message("PREFAST enabled!")
116 set(CMAKE_C_COMPILE_OBJECT "prefast <CMAKE_C_COMPILER> ${CMAKE_START_TEMP_FILE} ${CMAKE_CL_NOLOGO} <FLAGS> <DEFINES> /Fo<OBJECT> -c <SOURCE>${CMAKE_END_TEMP_FILE}"
117 "prefast LIST")
118 set(CMAKE_CXX_COMPILE_OBJECT "prefast <CMAKE_CXX_COMPILER> ${CMAKE_START_TEMP_FILE} ${CMAKE_CL_NOLOGO} <FLAGS> <DEFINES> /TP /Fo<OBJECT> -c <SOURCE>${CMAKE_END_TEMP_FILE}"
119 "prefast LIST")
120 set(CMAKE_C_LINK_EXECUTABLE
121 "<CMAKE_C_COMPILER> ${CMAKE_CL_NOLOGO} <OBJECTS> ${CMAKE_START_TEMP_FILE} <FLAGS> /Fe<TARGET> -link /implib:<TARGET_IMPLIB> /version:<TARGET_VERSION_MAJOR>.<TARGET_VERSION_MINOR> <CMAKE_C_LINK_FLAGS> <LINK_FLAGS> <LINK_LIBRARIES>${CMAKE_END_TEMP_FILE}")
122 set(CMAKE_CXX_LINK_EXECUTABLE
123 "<CMAKE_CXX_COMPILER> ${CMAKE_CL_NOLOGO} <OBJECTS> ${CMAKE_START_TEMP_FILE} <FLAGS> /Fe<TARGET> -link /implib:<TARGET_IMPLIB> /version:<TARGET_VERSION_MAJOR>.<TARGET_VERSION_MINOR> <CMAKE_CXX_LINK_FLAGS> <LINK_FLAGS> <LINK_LIBRARIES>${CMAKE_END_TEMP_FILE}")
124 endif()
125
126 set(CMAKE_RC_CREATE_SHARED_LIBRARY ${CMAKE_C_CREATE_SHARED_LIBRARY})
127 set(CMAKE_ASM_CREATE_SHARED_LIBRARY ${CMAKE_C_CREATE_SHARED_LIBRARY})
128 set(CMAKE_ASM_CREATE_STATIC_LIBRARY ${CMAKE_C_CREATE_STATIC_LIBRARY})
129
130 if(PCH)
131 macro(add_pch _target _pch _sources)
132
133 # Workaround for the MSVC toolchain (MSBUILD) /MP bug
134 set(_temp_gch ${CMAKE_CURRENT_BINARY_DIR}/${_target}.pch)
135 if(MSVC_IDE)
136 file(TO_NATIVE_PATH ${_temp_gch} _gch)
137 else()
138 set(_gch ${_temp_gch})
139 endif()
140
141 if(IS_CPP)
142 set(_pch_language CXX)
143 set(_cl_lang_flag "/TP")
144 else()
145 set(_pch_language C)
146 set(_cl_lang_flag "/TC")
147 endif()
148
149 if(MSVC_IDE)
150 set(_pch_path_name_flag "/Fp${_gch}")
151 endif()
152
153 # Build the precompiled header
154 # HEADER_FILE_ONLY FALSE: force compiling the header
155 set_source_files_properties(${_pch} PROPERTIES
156 HEADER_FILE_ONLY FALSE
157 LANGUAGE ${_pch_language}
158 COMPILE_FLAGS "${_cl_lang_flag} /Yc /Fp${_gch}"
159 OBJECT_OUTPUTS ${_gch})
160
161 # Prevent a race condition related to writing to the PDB files between the PCH and the excluded list of source files
162 get_target_property(_target_sources ${_target} SOURCES)
163 list(REMOVE_ITEM _target_sources ${_pch})
164 foreach(_target_src ${_target_sources})
165 set_property(SOURCE ${_target_src} APPEND PROPERTY OBJECT_DEPENDS ${_gch})
166 endforeach()
167
168 # Use the precompiled header with the specified source files, skipping the pch itself
169 list(REMOVE_ITEM ${_sources} ${_pch})
170 foreach(_src ${${_sources}})
171 set_property(SOURCE ${_src} APPEND_STRING PROPERTY COMPILE_FLAGS " /FI${_gch} /Yu${_gch} ${_pch_path_name_flag}")
172 endforeach()
173 endmacro()
174 else()
175 macro(add_pch _target _pch _sources)
176 endmacro()
177 endif()
178
179 function(set_entrypoint _module _entrypoint)
180 if(${_entrypoint} STREQUAL "0")
181 add_target_link_flags(${_module} "/NOENTRY")
182 elseif(ARCH STREQUAL "i386")
183 set(_entrysymbol ${_entrypoint})
184 if(${ARGC} GREATER 2)
185 set(_entrysymbol ${_entrysymbol}@${ARGV2})
186 endif()
187 add_target_link_flags(${_module} "/ENTRY:${_entrysymbol}")
188 else()
189 add_target_link_flags(${_module} "/ENTRY:${_entrypoint}")
190 endif()
191 endfunction()
192
193 function(set_subsystem MODULE SUBSYSTEM)
194 if(ARCH STREQUAL "amd64")
195 add_target_link_flags(${MODULE} "/SUBSYSTEM:${SUBSYSTEM},5.02")
196 else()
197 add_target_link_flags(${MODULE} "/SUBSYSTEM:${SUBSYSTEM},5.01")
198 endif()
199 endfunction()
200
201 function(set_image_base MODULE IMAGE_BASE)
202 add_target_link_flags(${MODULE} "/BASE:${IMAGE_BASE}")
203 endfunction()
204
205 function(set_module_type_toolchain MODULE TYPE)
206 if(CPP_USE_STL)
207 if((${TYPE} STREQUAL "kernelmodedriver") OR (${TYPE} STREQUAL "wdmdriver"))
208 message(FATAL_ERROR "Use of STL in kernelmodedriver or wdmdriver type module prohibited")
209 endif()
210 target_link_libraries(${MODULE} cpprt stlport oldnames)
211 elseif(CPP_USE_RT)
212 target_link_libraries(${MODULE} cpprt)
213 endif()
214 if((${TYPE} STREQUAL "win32dll") OR (${TYPE} STREQUAL "win32ocx") OR (${TYPE} STREQUAL "cpl"))
215 add_target_link_flags(${MODULE} "/DLL")
216 elseif(${TYPE} STREQUAL "kernelmodedriver")
217 add_target_link_flags(${MODULE} "/DRIVER")
218 elseif(${TYPE} STREQUAL "wdmdriver")
219 add_target_link_flags(${MODULE} "/DRIVER:WDM")
220 endif()
221 endfunction()
222
223 # Define those for having real libraries
224 set(CMAKE_IMPLIB_CREATE_STATIC_LIBRARY "LINK /LIB /NOLOGO <LINK_FLAGS> /OUT:<TARGET> <OBJECTS>")
225 set(CMAKE_STUB_ASM_COMPILE_OBJECT "<CMAKE_ASM_COMPILER> /nologo /Cp /Fo<OBJECT> /c /Ta <SOURCE>")
226 function(add_delay_importlibs _module)
227 get_target_property(_module_type ${_module} TYPE)
228 if(_module_type STREQUAL "STATIC_LIBRARY")
229 message(FATAL_ERROR "Cannot add delay imports to a static library")
230 endif()
231 foreach(_lib ${ARGN})
232 add_target_link_flags(${_module} "/DELAYLOAD:${_lib}.dll")
233 target_link_libraries(${_module} lib${_lib})
234 endforeach()
235 target_link_libraries(${_module} delayimp)
236 endfunction()
237
238 function(generate_import_lib _libname _dllname _spec_file)
239
240 set(_def_file ${CMAKE_CURRENT_BINARY_DIR}/${_libname}_exp.def)
241 set(_asm_stubs_file ${CMAKE_CURRENT_BINARY_DIR}/${_libname}_stubs.asm)
242
243 # Generate the asm stub file and the def file for import library
244 add_custom_command(
245 OUTPUT ${_asm_stubs_file} ${_def_file}
246 COMMAND native-spec2def --ms -a=${SPEC2DEF_ARCH} --implib -n=${_dllname} -d=${_def_file} -l=${_asm_stubs_file} ${CMAKE_CURRENT_SOURCE_DIR}/${_spec_file}
247 DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${_spec_file} native-spec2def)
248
249 if(MSVC_IDE)
250 # Compile the generated asm stub file
251 add_custom_command(
252 OUTPUT ${_asm_stubs_file}.obj
253 COMMAND ${CMAKE_ASM_COMPILER} /Cp /Fo${_asm_stubs_file}.obj /c /Ta ${_asm_stubs_file}
254 DEPENDS ${_asm_stubs_file})
255 else()
256 # Be clear about the "language"
257 # Thanks MS for creating a stupid linker
258 set_source_files_properties(${_asm_stubs_file} PROPERTIES LANGUAGE "STUB_ASM")
259 endif()
260
261 # Add our library
262 if(MSVC_IDE)
263 add_library(${_libname} STATIC EXCLUDE_FROM_ALL ${_asm_stubs_file}.obj)
264 set_source_files_properties(${_asm_stubs_file}.obj PROPERTIES EXTERNAL_OBJECT 1)
265 set_target_properties(${_libname} PROPERTIES LINKER_LANGUAGE "C")
266 else()
267 # NOTE: as stub file and def file are generated in one pass, depending on one is like depending on the other
268 add_library(${_libname} STATIC EXCLUDE_FROM_ALL ${_asm_stubs_file})
269 add_dependencies(${_libname} ${_def_file})
270 # set correct "link rule"
271 set_target_properties(${_libname} PROPERTIES LINKER_LANGUAGE "IMPLIB")
272 endif()
273 set_target_properties(${_libname} PROPERTIES STATIC_LIBRARY_FLAGS "/DEF:${_def_file}")
274 endfunction()
275
276 if(ARCH STREQUAL "amd64")
277 add_definitions(/D__x86_64)
278 set(SPEC2DEF_ARCH x86_64)
279 else()
280 set(SPEC2DEF_ARCH i386)
281 endif()
282 function(spec2def _dllname _spec_file)
283 # Do we also want to add importlib targets?
284 if(${ARGC} GREATER 2)
285 if(${ARGN} STREQUAL "ADD_IMPORTLIB")
286 set(__add_importlib TRUE)
287 else()
288 message(FATAL_ERROR "Wrong argument passed to spec2def, ${ARGN}")
289 endif()
290 endif()
291
292 # Get library basename
293 get_filename_component(_file ${_dllname} NAME_WE)
294
295 # Error out on anything else than spec
296 if(NOT ${_spec_file} MATCHES ".*\\.spec")
297 message(FATAL_ERROR "spec2def only takes spec files as input.")
298 endif()
299
300 # Generate exports def and C stubs file for the DLL
301 add_custom_command(
302 OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${_file}.def ${CMAKE_CURRENT_BINARY_DIR}/${_file}_stubs.c
303 COMMAND native-spec2def --ms -a=${SPEC2DEF_ARCH} -n=${_dllname} -d=${CMAKE_CURRENT_BINARY_DIR}/${_file}.def -s=${CMAKE_CURRENT_BINARY_DIR}/${_file}_stubs.c ${CMAKE_CURRENT_SOURCE_DIR}/${_spec_file}
304 DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${_spec_file} native-spec2def)
305
306 if(__add_importlib)
307 generate_import_lib(lib${_file} ${_dllname} ${_spec_file})
308 endif()
309 endfunction()
310
311 macro(macro_mc FLAG FILE)
312 set(COMMAND_MC ${CMAKE_MC_COMPILER} ${FLAG} -b ${CMAKE_CURRENT_SOURCE_DIR}/${FILE}.mc -r ${REACTOS_BINARY_DIR}/include/reactos -h ${REACTOS_BINARY_DIR}/include/reactos)
313 endmacro()
314
315 # PSEH workaround
316 set(PSEH_LIB "pseh")
317
318 # Use a full path for the x86 version of ml when using x64 VS.
319 # It's not a problem when using the DDK/WDK because, in x64 mode,
320 # both the x86 and x64 versions of ml are available.
321 if((ARCH STREQUAL "amd64") AND (DEFINED ENV{VCINSTALLDIR}))
322 set(CMAKE_ASM16_COMPILER $ENV{VCINSTALLDIR}/bin/ml.exe)
323 else()
324 set(CMAKE_ASM16_COMPILER ml.exe)
325 endif()
326
327 function(CreateBootSectorTarget _target_name _asm_file _binary_file _base_address)
328 set(_object_file ${_binary_file}.obj)
329 set(_temp_file ${_binary_file}.tmp)
330
331 add_custom_command(
332 OUTPUT ${_temp_file}
333 COMMAND ${CMAKE_C_COMPILER} /nologo /X /I${REACTOS_SOURCE_DIR}/include/asm /I${REACTOS_BINARY_DIR}/include/asm /D__ASM__ /D_USE_ML /EP /c ${_asm_file} > ${_temp_file}
334 DEPENDS ${_asm_file})
335
336 add_custom_command(
337 OUTPUT ${_object_file}
338 COMMAND ${CMAKE_ASM16_COMPILER} /nologo /Cp /Fo${_object_file} /c /Ta ${_temp_file}
339 DEPENDS ${_temp_file})
340
341 add_custom_command(
342 OUTPUT ${_binary_file}
343 COMMAND native-obj2bin ${_object_file} ${_binary_file} ${_base_address}
344 DEPENDS ${_object_file} native-obj2bin)
345
346 set_source_files_properties(${_object_file} ${_temp_file} ${_binary_file} PROPERTIES GENERATED TRUE)
347
348 add_custom_target(${_target_name} ALL DEPENDS ${_binary_file})
349 endfunction()
350
351 function(allow_warnings __module)
352 endfunction()
353
354 macro(add_asm_files _target)
355 if(MSVC_IDE AND (CMAKE_VERSION MATCHES "ReactOS"))
356 get_defines(_directory_defines)
357 get_includes(_directory_includes)
358 get_directory_property(_defines COMPILE_DEFINITIONS)
359 foreach(_source_file ${ARGN})
360 get_filename_component(_source_file_base_name ${_source_file} NAME_WE)
361 get_filename_component(_source_file_full_path ${_source_file} ABSOLUTE)
362 set(_preprocessed_asm_file ${CMAKE_CURRENT_BINARY_DIR}/asm/${_source_file_base_name}_${_target}.tmp)
363 set(_object_file ${CMAKE_CURRENT_BINARY_DIR}/asm/${_source_file_base_name}_${_target}.obj)
364 get_source_file_property(_defines_semicolon_list ${_source_file_full_path} COMPILE_DEFINITIONS)
365 unset(_source_file_defines)
366 foreach(_define ${_defines_semicolon_list})
367 if(NOT ${_define} STREQUAL "NOTFOUND")
368 list(APPEND _source_file_defines -D${_define})
369 endif()
370 endforeach()
371 add_custom_command(
372 OUTPUT ${_preprocessed_asm_file} ${_object_file}
373 COMMAND cl /nologo /X /I${REACTOS_SOURCE_DIR}/include/asm /I${REACTOS_BINARY_DIR}/include/asm ${_directory_includes} ${_source_file_defines} ${_directory_defines} /D__ASM__ /D_USE_ML /EP /c ${_source_file_full_path} > ${_preprocessed_asm_file} && ${CMAKE_ASM_COMPILER} /nologo /Cp /Fo${_object_file} /c /Ta ${_preprocessed_asm_file}
374 DEPENDS ${_source_file_full_path})
375 set_source_files_properties(${_object_file} PROPERTIES EXTERNAL_OBJECT 1)
376 list(APPEND ${_target} ${_object_file})
377 endforeach()
378 else()
379 list(APPEND ${_target} ${ARGN})
380 endif()
381 endmacro()