[REG_WINETEST] Import from Wine Staging 1.7.37. CORE-9246
[reactos.git] / reactos / cmake / CMakeMacros.cmake
1
2 # set_cpp
3 # Marks the current folder as containing C++ modules, additionally enabling
4 # specific C++ language features as specified (all of these default to off):
5 #
6 # WITH_RUNTIME
7 # Links with the C++ runtime. Enable this for modules which use new/delete or
8 # RTTI, but do not require STL. This is the right choice if you see undefined
9 # references to operator new/delete, vector constructor/destructor iterator,
10 # type_info::vtable, ...
11 # Note: this only affects linking, so cannot be used for static libraries.
12 # WITH_RTTI
13 # Enables run-time type information. Enable this if the module uses typeid or
14 # dynamic_cast. You will probably need to enable WITH_RUNTIME as well, if
15 # you're not already using STL.
16 # WITH_EXCEPTIONS
17 # Enables C++ exception handling. Enable this if the module uses try/catch or
18 # throw. You might also need this if you use a standard operator new (the one
19 # without nothrow).
20 # WITH_STL
21 # Enables standard C++ headers and links to the Standard Template Library.
22 # Use this for modules using anything from the std:: namespace, e.g. maps,
23 # strings, vectors, etc.
24 # Note: this affects both compiling (via include directories) and
25 # linking (by adding STL). Implies WITH_RUNTIME.
26 # FIXME: WITH_STL is currently also required for runtime headers such as
27 # <new> and <exception>. This is not a big issue because in stl-less
28 # environments you usually don't want those anyway; but we might want
29 # to have modules like this in the future.
30 #
31 # Examples:
32 # set_cpp()
33 # Enables the C++ language, but will cause errors if any runtime or standard
34 # library features are used. This should be the default for C++ in kernel
35 # mode or otherwise restricted environments.
36 # Note: this is required to get libgcc (for multiplication/division) linked
37 # in for C++ modules, and to set the correct language for precompiled
38 # header files, so it IS required even with no features specified.
39 # set_cpp(WITH_RUNTIME)
40 # Links with the C++ runtime, so that e.g. custom operator new implementations
41 # can be used in a restricted environment. This is also required for linking
42 # with libraries (such as ATL) which have RTTI enabled, even if the module in
43 # question does not use WITH_RTTI.
44 # set_cpp(WITH_RTTI WITH_EXCEPTIONS WITH_STL)
45 # The full package. This will adjust compiler and linker so that all C++
46 # features can be used.
47 macro(set_cpp)
48 cmake_parse_arguments(__cppopts "WITH_RUNTIME;WITH_RTTI;WITH_EXCEPTIONS;WITH_STL" "" "" ${ARGN})
49 if(__cppopts_UNPARSED_ARGUMENTS)
50 message(FATAL_ERROR "set_cpp: unparsed arguments ${__cppopts_UNPARSED_ARGUMENTS}")
51 endif()
52
53 if(__cppopts_WITH_RUNTIME)
54 set(CPP_USE_RT 1)
55 endif()
56 if(__cppopts_WITH_RTTI)
57 if(MSVC)
58 replace_compile_flags("/GR-" "/GR")
59 else()
60 replace_compile_flags_language("-fno-rtti" "-frtti" "CXX")
61 endif()
62 endif()
63 if(__cppopts_WITH_EXCEPTIONS)
64 if(MSVC)
65 replace_compile_flags("/EHs-c-" "/EHsc")
66 else()
67 replace_compile_flags_language("-fno-exceptions" "-fexceptions" "CXX")
68 endif()
69 endif()
70 if(__cppopts_WITH_STL)
71 set(CPP_USE_STL 1)
72 if(MSVC)
73 add_definitions(-DNATIVE_CPP_INCLUDE=${REACTOS_SOURCE_DIR}/include/c++)
74 include_directories(${REACTOS_SOURCE_DIR}/include/c++/stlport)
75 else()
76 replace_compile_flags("-nostdinc" " ")
77 endif()
78 endif()
79
80 set(IS_CPP 1)
81 endmacro()
82
83 function(add_dependency_node _node)
84 if(GENERATE_DEPENDENCY_GRAPH)
85 get_target_property(_type ${_node} TYPE)
86 if(_type MATCHES SHARED_LIBRARY OR ${_node} MATCHES ntoskrnl)
87 file(APPEND ${REACTOS_BINARY_DIR}/dependencies.graphml " <node id=\"${_node}\"/>\n")
88 endif()
89 endif()
90 endfunction()
91
92 function(add_dependency_edge _source _target)
93 if(GENERATE_DEPENDENCY_GRAPH)
94 get_target_property(_type ${_source} TYPE)
95 if(_type MATCHES SHARED_LIBRARY)
96 file(APPEND ${REACTOS_BINARY_DIR}/dependencies.graphml " <edge source=\"${_source}\" target=\"${_target}\"/>\n")
97 endif()
98 endif()
99 endfunction()
100
101 function(add_dependency_header)
102 file(APPEND ${REACTOS_BINARY_DIR}/dependencies.graphml "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<graphml>\n <graph id=\"ReactOS dependencies\" edgedefault=\"directed\">\n")
103 endfunction()
104
105 function(add_dependency_footer)
106 add_dependency_node(ntdll)
107 file(APPEND ${REACTOS_BINARY_DIR}/dependencies.graphml " </graph>\n</graphml>\n")
108 endfunction()
109
110 function(add_message_headers _type)
111 if(${_type} STREQUAL UNICODE)
112 set(_flag "-U")
113 else()
114 set(_flag "-A")
115 endif()
116 foreach(_in_FILE ${ARGN})
117 get_filename_component(FILE ${_in_FILE} NAME_WE)
118 macro_mc(${_flag} ${FILE})
119 add_custom_command(
120 OUTPUT ${REACTOS_BINARY_DIR}/include/reactos/${FILE}.rc ${REACTOS_BINARY_DIR}/include/reactos/${FILE}.h
121 COMMAND ${COMMAND_MC} ${MC_FLAGS}
122 DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${FILE}.mc)
123 set_source_files_properties(
124 ${REACTOS_BINARY_DIR}/include/reactos/${FILE}.h ${REACTOS_BINARY_DIR}/include/reactos/${FILE}.rc
125 PROPERTIES GENERATED TRUE)
126 add_custom_target(${FILE} ALL DEPENDS ${REACTOS_BINARY_DIR}/include/reactos/${FILE}.h ${REACTOS_BINARY_DIR}/include/reactos/${FILE}.rc)
127 endforeach()
128 endfunction()
129
130 function(add_link)
131 cmake_parse_arguments(_LINK "MINIMIZE" "NAME;PATH;CMD_LINE_ARGS;ICON;GUID" "" ${ARGN})
132 if(NOT _LINK_NAME OR NOT _LINK_PATH)
133 message(FATAL_ERROR "You must provide name and path")
134 endif()
135
136 if(_LINK_CMD_LINE_ARGS)
137 set(_LINK_CMD_LINE_ARGS -c ${_LINK_CMD_LINE_ARGS})
138 endif()
139
140 if(_LINK_ICON)
141 set(_LINK_ICON -i ${_LINK_ICON})
142 endif()
143
144 if(_LINK_GUID)
145 set(_LINK_GUID -g ${_LINK_GUID})
146 endif()
147
148 if(_LINK_MINIMIZE)
149 set(_LINK_MINIMIZE "-m")
150 endif()
151
152 add_custom_command(
153 OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${_LINK_NAME}.lnk
154 COMMAND native-mkshelllink -o ${CMAKE_CURRENT_BINARY_DIR}/${_LINK_NAME}.lnk ${_LINK_CMD_LINE_ARGS} ${_LINK_ICON} ${_LINK_GUID} ${_LINK_MINIMIZE} ${_LINK_PATH}
155 DEPENDS native-mkshelllink)
156 set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/${_LINK_NAME}.lnk PROPERTIES GENERATED TRUE)
157 endfunction()
158
159 macro(dir_to_num dir var)
160 if(${dir} STREQUAL reactos/system32)
161 set(${var} 1)
162 elseif(${dir} STREQUAL reactos/system32/drivers)
163 set(${var} 2)
164 elseif(${dir} STREQUAL reactos/Fonts)
165 set(${var} 3)
166 elseif(${dir} STREQUAL reactos)
167 set(${var} 4)
168 elseif(${dir} STREQUAL reactos/system32/drivers/etc)
169 set(${var} 5)
170 elseif(${dir} STREQUAL reactos/inf)
171 set(${var} 6)
172 elseif(${dir} STREQUAL reactos/bin)
173 set(${var} 7)
174 elseif(${dir} STREQUAL reactos/bin/testdata)
175 set(${var} 8)
176 elseif(${dir} STREQUAL reactos/media)
177 set(${var} 9)
178 elseif(${dir} STREQUAL reactos/Microsoft.NET)
179 set(${var} 10)
180 elseif(${dir} STREQUAL reactos/Microsoft.NET/Framework)
181 set(${var} 11)
182 elseif(${dir} STREQUAL reactos/Microsoft.NET/Framework/v1.0.3705)
183 set(${var} 12)
184 elseif(${dir} STREQUAL reactos/Microsoft.NET/Framework/v1.1.4322)
185 set(${var} 13)
186 elseif(${dir} STREQUAL reactos/Microsoft.NET/Framework/v2.0.50727)
187 set(${var} 14)
188 elseif(${dir} STREQUAL reactos/Resources)
189 set(${var} 15)
190 elseif(${dir} STREQUAL reactos/Resources/Themes)
191 set(${var} 16)
192 elseif(${dir} STREQUAL reactos/system32/wbem)
193 set(${var} 17)
194 elseif(${dir} STREQUAL reactos/Resources/Themes/Lautus)
195 set(${var} 18)
196 elseif(${dir} STREQUAL reactos/Help)
197 set(${var} 19)
198 elseif(${dir} STREQUAL reactos/Config)
199 set(${var} 20)
200 elseif(${dir} STREQUAL reactos/Cursors)
201 set(${var} 21)
202 elseif(${dir} STREQUAL reactos/system32/ShellExt)
203 set(${var} 22)
204 elseif(${dir} STREQUAL reactos/Temp)
205 set(${var} 23)
206 elseif(${dir} STREQUAL reactos/system32/spool)
207 set(${var} 24)
208 elseif(${dir} STREQUAL reactos/system32/spool/drivers)
209 set(${var} 25)
210 elseif(${dir} STREQUAL reactos/system32/spool/drivers/color)
211 set(${var} 26)
212 elseif(${dir} STREQUAL reactos/system32/spool/drivers/w32x86)
213 set(${var} 27)
214 elseif(${dir} STREQUAL reactos/system32/spool/drivers/w32x86/3)
215 set(${var} 28)
216 elseif(${dir} STREQUAL reactos/system32/spool/prtprocs)
217 set(${var} 29)
218 elseif(${dir} STREQUAL reactos/system32/spool/prtprocs/w32x86)
219 set(${var} 30)
220 elseif(${dir} STREQUAL reactos/system32/spool/PRINTERS)
221 set(${var} 31)
222 elseif(${dir} STREQUAL reactos/system32/wbem/Repository)
223 set(${var} 32)
224 elseif(${dir} STREQUAL reactos/system32/wbem/Repository/FS)
225 set(${var} 33)
226 elseif(${dir} STREQUAL reactos/system32/wbem/mof/good)
227 set(${var} 34)
228 elseif(${dir} STREQUAL reactos/system32/wbem/mof/bad)
229 set(${var} 35)
230 elseif(${dir} STREQUAL reactos/system32/wbem/AdStatus)
231 set(${var} 36)
232 elseif(${dir} STREQUAL reactos/system32/wbem/xml)
233 set(${var} 37)
234 elseif(${dir} STREQUAL reactos/system32/wbem/Logs)
235 set(${var} 38)
236 elseif(${dir} STREQUAL reactos/system32/wbem/AutoRecover)
237 set(${var} 39)
238 elseif(${dir} STREQUAL reactos/system32/wbem/snmp)
239 set(${var} 40)
240 elseif(${dir} STREQUAL reactos/system32/wbem/Performance)
241 set(${var} 41)
242 elseif(${dir} STREQUAL reactos/twain_32)
243 set(${var} 42)
244 elseif(${dir} STREQUAL reactos/repair)
245 set(${var} 43)
246 elseif(${dir} STREQUAL reactos/Web)
247 set(${var} 44)
248 elseif(${dir} STREQUAL reactos/Web/Wallpaper)
249 set(${var} 45)
250 elseif(${dir} STREQUAL reactos/Prefetch)
251 set(${var} 46)
252 elseif(${dir} STREQUAL reactos/security)
253 set(${var} 47)
254 elseif(${dir} STREQUAL reactos/security/Database)
255 set(${var} 48)
256 elseif(${dir} STREQUAL reactos/security/logs)
257 set(${var} 49)
258 elseif(${dir} STREQUAL reactos/security/templates)
259 set(${var} 50)
260 elseif(${dir} STREQUAL reactos/system32/CatRoot)
261 set(${var} 51)
262 elseif(${dir} STREQUAL reactos/system32/CatRoot2)
263 set(${var} 52)
264 else()
265 message(FATAL_ERROR "Wrong destination: ${dir}")
266 endif()
267 endmacro()
268
269 function(add_cd_file)
270 cmake_parse_arguments(_CD "NO_CAB;NOT_IN_HYBRIDCD" "DESTINATION;NAME_ON_CD;TARGET" "FILE;FOR" ${ARGN})
271 if(NOT (_CD_TARGET OR _CD_FILE))
272 message(FATAL_ERROR "You must provide a target or a file to install!")
273 endif()
274
275 if(NOT _CD_DESTINATION)
276 message(FATAL_ERROR "You must provide a destination")
277 elseif(${_CD_DESTINATION} STREQUAL root)
278 set(_CD_DESTINATION "")
279 endif()
280
281 if(NOT _CD_FOR)
282 message(FATAL_ERROR "You must provide a cd name (or \"all\" for all of them) to install the file on!")
283 endif()
284
285 #get file if we need to
286 if(NOT _CD_FILE)
287 get_target_property(_CD_FILE ${_CD_TARGET} LOCATION_${CMAKE_BUILD_TYPE})
288 endif()
289
290 #do we add it to all CDs?
291 list(FIND _CD_FOR all __cd)
292 if(NOT __cd EQUAL -1)
293 list(REMOVE_AT _CD_FOR __cd)
294 list(INSERT _CD_FOR __cd "bootcd;livecd;regtest")
295 endif()
296
297 #do we add it to bootcd?
298 list(FIND _CD_FOR bootcd __cd)
299 if(NOT __cd EQUAL -1)
300 #whether or not we should put it in reactos.cab or directly on cd
301 if(_CD_NO_CAB)
302 #directly on cd
303 foreach(item ${_CD_FILE})
304 if(_CD_NAME_ON_CD)
305 #rename it in the cd tree
306 set(__file ${_CD_NAME_ON_CD})
307 else()
308 get_filename_component(__file ${item} NAME)
309 endif()
310 set_property(GLOBAL APPEND PROPERTY BOOTCD_FILE_LIST "${_CD_DESTINATION}/${__file}=${item}")
311 #add it also into the hybridcd if not specified otherwise
312 if(NOT _CD_NOT_IN_HYBRIDCD)
313 set_property(GLOBAL APPEND PROPERTY HYBRIDCD_FILE_LIST "bootcd/${_CD_DESTINATION}/${__file}=${item}")
314 endif()
315 endforeach()
316 if(_CD_TARGET)
317 #manage dependency
318 add_dependencies(bootcd ${_CD_TARGET} registry_inf)
319 endif()
320 else()
321 #add it in reactos.cab
322 dir_to_num(${_CD_DESTINATION} _num)
323 file(RELATIVE_PATH __relative_file ${REACTOS_SOURCE_DIR} ${_CD_FILE})
324 file(APPEND ${REACTOS_BINARY_DIR}/boot/bootdata/packages/reactos.dff.dyn "\"${__relative_file}\" ${_num}\n")
325 unset(__relative_file)
326 if(_CD_TARGET)
327 #manage dependency - target level
328 add_dependencies(reactos_cab_inf ${_CD_TARGET})
329 endif()
330 # manage dependency - file level
331 set_property(GLOBAL APPEND PROPERTY REACTOS_CAB_DEPENDS ${_CD_FILE})
332 endif()
333 endif() #end bootcd
334
335 #do we add it to livecd?
336 list(FIND _CD_FOR livecd __cd)
337 if(NOT __cd EQUAL -1)
338 #manage dependency
339 if(_CD_TARGET)
340 add_dependencies(livecd ${_CD_TARGET} registry_inf)
341 endif()
342 foreach(item ${_CD_FILE})
343 if(_CD_NAME_ON_CD)
344 #rename it in the cd tree
345 set(__file ${_CD_NAME_ON_CD})
346 else()
347 get_filename_component(__file ${item} NAME)
348 endif()
349 set_property(GLOBAL APPEND PROPERTY LIVECD_FILE_LIST "${_CD_DESTINATION}/${__file}=${item}")
350 #add it also into the hybridcd if not specified otherwise
351 if(NOT _CD_NOT_IN_HYBRIDCD)
352 set_property(GLOBAL APPEND PROPERTY HYBRIDCD_FILE_LIST "livecd/${_CD_DESTINATION}/${__file}=${item}")
353 endif()
354 endforeach()
355 endif() #end livecd
356
357 #do we need also to add it to hybridcd?
358 list(FIND _CD_FOR hybridcd __cd)
359 if(NOT __cd EQUAL -1)
360 foreach(item ${_CD_FILE})
361 if(_CD_NAME_ON_CD)
362 #rename it in the cd tree
363 set(__file ${_CD_NAME_ON_CD})
364 else()
365 get_filename_component(__file ${item} NAME)
366 endif()
367 set_property(GLOBAL APPEND PROPERTY HYBRIDCD_FILE_LIST "${_CD_DESTINATION}/${__file}=${item}")
368 endforeach()
369 endif() #end hybridcd
370
371 #do we add it to regtest?
372 list(FIND _CD_FOR regtest __cd)
373 if(NOT __cd EQUAL -1)
374 #whether or not we should put it in reactos.cab or directly on cd
375 if(_CD_NO_CAB)
376 #directly on cd
377 foreach(item ${_CD_FILE})
378 if(_CD_NAME_ON_CD)
379 #rename it in the cd tree
380 set(__file ${_CD_NAME_ON_CD})
381 else()
382 get_filename_component(__file ${item} NAME)
383 endif()
384 set_property(GLOBAL APPEND PROPERTY BOOTCDREGTEST_FILE_LIST "${_CD_DESTINATION}/${__file}=${item}")
385 endforeach()
386 if(_CD_TARGET)
387 #manage dependency
388 add_dependencies(bootcdregtest ${_CD_TARGET} registry_inf)
389 endif()
390 else()
391 #add it in reactos.cab
392 #dir_to_num(${_CD_DESTINATION} _num)
393 #file(APPEND ${REACTOS_BINARY_DIR}/boot/bootdata/packages/reactos.dff.dyn "${_CD_FILE} ${_num}\n")
394 #if(_CD_TARGET)
395 # #manage dependency
396 # add_dependencies(reactos_cab ${_CD_TARGET})
397 #endif()
398 endif()
399 endif() #end bootcd
400 endfunction()
401
402 function(create_iso_lists)
403 # generate reactos.cab before anything else
404 get_property(_filelist GLOBAL PROPERTY REACTOS_CAB_DEPENDS)
405
406 # begin with reactos.inf. We want this command to be always executed, so we pretend it generates another file although it will never do.
407 add_custom_command(
408 OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/reactos.inf ${CMAKE_CURRENT_BINARY_DIR}/__some_non_existent_file
409 COMMAND ${CMAKE_COMMAND} -E copy_if_different ${REACTOS_BINARY_DIR}/boot/bootdata/packages/reactos.inf ${CMAKE_CURRENT_BINARY_DIR}/reactos.inf
410 DEPENDS ${REACTOS_BINARY_DIR}/boot/bootdata/packages/reactos.inf reactos_cab_inf)
411
412 add_custom_command(
413 OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/reactos.cab
414 COMMAND native-cabman -C ${REACTOS_BINARY_DIR}/boot/bootdata/packages/reactos.dff -RC ${CMAKE_CURRENT_BINARY_DIR}/reactos.inf -N -P ${REACTOS_SOURCE_DIR}
415 DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/reactos.inf native-cabman ${_filelist})
416
417 add_custom_target(reactos_cab DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/reactos.cab)
418 add_dependencies(reactos_cab reactos_cab_inf)
419
420 add_cd_file(
421 TARGET reactos_cab
422 FILE ${CMAKE_CURRENT_BINARY_DIR}/reactos.cab
423 DESTINATION reactos
424 NO_CAB FOR bootcd regtest)
425
426 add_cd_file(
427 FILE ${CMAKE_CURRENT_BINARY_DIR}/livecd.iso
428 DESTINATION livecd
429 FOR hybridcd)
430
431 get_property(_filelist GLOBAL PROPERTY BOOTCD_FILE_LIST)
432 string(REPLACE ";" "\n" _filelist "${_filelist}")
433 file(APPEND ${REACTOS_BINARY_DIR}/boot/bootcd.lst "${_filelist}")
434 unset(_filelist)
435
436 get_property(_filelist GLOBAL PROPERTY LIVECD_FILE_LIST)
437 string(REPLACE ";" "\n" _filelist "${_filelist}")
438 file(APPEND ${REACTOS_BINARY_DIR}/boot/livecd.lst "${_filelist}")
439 unset(_filelist)
440
441 get_property(_filelist GLOBAL PROPERTY HYBRIDCD_FILE_LIST)
442 string(REPLACE ";" "\n" _filelist "${_filelist}")
443 file(APPEND ${REACTOS_BINARY_DIR}/boot/hybridcd.lst "${_filelist}")
444 unset(_filelist)
445
446 get_property(_filelist GLOBAL PROPERTY BOOTCDREGTEST_FILE_LIST)
447 string(REPLACE ";" "\n" _filelist "${_filelist}")
448 file(APPEND ${REACTOS_BINARY_DIR}/boot/bootcdregtest.lst "${_filelist}")
449 unset(_filelist)
450 endfunction()
451
452 # Create module_clean targets
453 function(add_clean_target _target)
454 set(_clean_working_directory ${CMAKE_CURRENT_BINARY_DIR})
455 if(CMAKE_GENERATOR STREQUAL "Unix Makefiles" OR CMAKE_GENERATOR STREQUAL "MinGW Makefiles")
456 set(_clean_command make clean)
457 elseif(CMAKE_GENERATOR STREQUAL "NMake Makefiles")
458 set(_clean_command nmake /nologo clean)
459 elseif(CMAKE_GENERATOR STREQUAL "Ninja")
460 set(_clean_command ninja -t clean ${_target})
461 set(_clean_working_directory ${REACTOS_BINARY_DIR})
462 endif()
463 add_custom_target(${_target}_clean
464 COMMAND ${_clean_command}
465 WORKING_DIRECTORY ${_clean_working_directory}
466 COMMENT "Cleaning ${_target}")
467 endfunction()
468
469 if(NOT MSVC_IDE)
470 function(add_library name)
471 _add_library(${name} ${ARGN})
472 add_clean_target(${name})
473 endfunction()
474
475 function(add_executable name)
476 _add_executable(${name} ${ARGN})
477 add_clean_target(${name})
478 endfunction()
479 elseif(USE_FOLDER_STRUCTURE)
480 set_property(GLOBAL PROPERTY USE_FOLDERS ON)
481 string(LENGTH ${CMAKE_SOURCE_DIR} CMAKE_SOURCE_DIR_LENGTH)
482
483 function(add_custom_target name)
484 _add_custom_target(${name} ${ARGN})
485 string(SUBSTRING ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR_LENGTH} -1 CMAKE_CURRENT_SOURCE_DIR_RELATIVE)
486 set_property(TARGET "${name}" PROPERTY FOLDER "${CMAKE_CURRENT_SOURCE_DIR_RELATIVE}")
487 endfunction()
488
489 function(add_library name)
490 _add_library(${name} ${ARGN})
491 get_target_property(_target_excluded ${name} EXCLUDE_FROM_ALL)
492 if(_target_excluded AND ${name} MATCHES "^lib.*")
493 set_property(TARGET "${name}" PROPERTY FOLDER "Importlibs")
494 else()
495 string(SUBSTRING ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR_LENGTH} -1 CMAKE_CURRENT_SOURCE_DIR_RELATIVE)
496 set_property(TARGET "${name}" PROPERTY FOLDER "${CMAKE_CURRENT_SOURCE_DIR_RELATIVE}")
497 endif()
498 endfunction()
499
500 function(add_executable name)
501 _add_executable(${name} ${ARGN})
502 string(SUBSTRING ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR_LENGTH} -1 CMAKE_CURRENT_SOURCE_DIR_RELATIVE)
503 set_property(TARGET "${name}" PROPERTY FOLDER "${CMAKE_CURRENT_SOURCE_DIR_RELATIVE}")
504 endfunction()
505 endif()
506
507 if(CMAKE_HOST_SYSTEM_NAME STREQUAL "Windows")
508 function(concatenate_files _output _file1)
509 file(TO_NATIVE_PATH "${_output}" _real_output)
510 file(TO_NATIVE_PATH "${_file1}" _file_list)
511 foreach(_file ${ARGN})
512 file(TO_NATIVE_PATH "${_file}" _real_file)
513 set(_file_list "${_file_list} + ${_real_file}")
514 endforeach()
515 add_custom_command(
516 OUTPUT ${_output}
517 COMMAND cmd.exe /C "copy /Y /B ${_file_list} ${_real_output} > nul"
518 DEPENDS ${_file1} ${ARGN})
519 endfunction()
520 else()
521 macro(concatenate_files _output)
522 add_custom_command(
523 OUTPUT ${_output}
524 COMMAND cat ${ARGN} > ${_output}
525 DEPENDS ${ARGN})
526 endmacro()
527 endif()
528
529 function(add_importlibs _module)
530 add_dependency_node(${_module})
531 foreach(LIB ${ARGN})
532 if("${LIB}" MATCHES "msvcrt")
533 add_target_compile_definitions(${_module} _DLL __USE_CRTIMP)
534 target_link_libraries(${_module} msvcrtex)
535 endif()
536 target_link_libraries(${_module} lib${LIB})
537 add_dependencies(${_module} lib${LIB})
538 add_dependency_edge(${_module} ${LIB})
539 endforeach()
540 endfunction()
541
542 function(set_module_type MODULE TYPE)
543 cmake_parse_arguments(__module "UNICODE;HOTPATCHABLE" "IMAGEBASE" "ENTRYPOINT" ${ARGN})
544
545 if(__module_UNPARSED_ARGUMENTS)
546 message(STATUS "set_module_type : unparsed arguments ${__module_UNPARSED_ARGUMENTS}, module : ${MODULE}")
547 endif()
548
549 # Add the module to the module group list, if it is defined
550 if(DEFINED CURRENT_MODULE_GROUP)
551 set_property(GLOBAL APPEND PROPERTY ${CURRENT_MODULE_GROUP}_MODULE_LIST "${MODULE}")
552 endif()
553
554 # Set subsystem. Also take this as an occasion
555 # to error out if someone gave a non existing type
556 if((${TYPE} STREQUAL nativecui) OR (${TYPE} STREQUAL nativedll)
557 OR (${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver) OR (${TYPE} STREQUAL kerneldll))
558 set(__subsystem native)
559 elseif(${TYPE} STREQUAL win32cui)
560 set(__subsystem console)
561 elseif(${TYPE} STREQUAL win32gui)
562 set(__subsystem windows)
563 elseif(NOT ((${TYPE} STREQUAL win32dll) OR (${TYPE} STREQUAL win32ocx)
564 OR (${TYPE} STREQUAL cpl) OR (${TYPE} STREQUAL module)))
565 message(FATAL_ERROR "Unknown type ${TYPE} for module ${MODULE}")
566 endif()
567
568 if(DEFINED __subsystem)
569 set_subsystem(${MODULE} ${__subsystem})
570 endif()
571
572 #set unicode definitions
573 if(__module_UNICODE)
574 add_target_compile_definitions(${MODULE} UNICODE _UNICODE)
575 endif()
576
577 # Handle hotpatchable images.
578 # GCC has this as a function attribute so we're handling it using DECLSPEC_HOTPATCH
579 if(__module_HOTPATCHABLE AND MSVC AND (NOT ARCH STREQUAL "arm"))
580 if(ARCH STREQUAL "i386")
581 set_property(TARGET ${MODULE} APPEND_STRING PROPERTY COMPILE_FLAGS " /hotpatch")
582 set_property(TARGET ${MODULE} APPEND_STRING PROPERTY LINK_FLAGS " /FUNCTIONPADMIN:5")
583 elseif(ARCH STREQUAL "amd64")
584 set_property(TARGET ${MODULE} APPEND_STRING PROPERTY LINK_FLAGS " /FUNCTIONPADMIN:6")
585 endif()
586 endif()
587
588 # set entry point
589 if(__module_ENTRYPOINT OR (__module_ENTRYPOINT STREQUAL "0"))
590 list(GET __module_ENTRYPOINT 0 __entrypoint)
591 list(LENGTH __module_ENTRYPOINT __length)
592 if(${__length} EQUAL 2)
593 list(GET __module_ENTRYPOINT 1 __entrystack)
594 elseif(NOT ${__length} EQUAL 1)
595 message(FATAL_ERROR "Wrong arguments for ENTRYPOINT parameter of set_module_type : ${__module_ENTRYPOINT}")
596 endif()
597 unset(__length)
598 elseif(${TYPE} STREQUAL nativecui)
599 set(__entrypoint NtProcessStartup)
600 set(__entrystack 4)
601 elseif(${TYPE} STREQUAL win32cui)
602 if(__module_UNICODE)
603 set(__entrypoint wmainCRTStartup)
604 else()
605 set(__entrypoint mainCRTStartup)
606 endif()
607 elseif(${TYPE} STREQUAL win32gui)
608 if(__module_UNICODE)
609 set(__entrypoint wWinMainCRTStartup)
610 else()
611 set(__entrypoint WinMainCRTStartup)
612 endif()
613 elseif((${TYPE} STREQUAL win32dll) OR (${TYPE} STREQUAL win32ocx)
614 OR (${TYPE} STREQUAL cpl))
615 set(__entrypoint DllMainCRTStartup)
616 set(__entrystack 12)
617 elseif((${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver))
618 set(__entrypoint DriverEntry)
619 set(__entrystack 8)
620 elseif(${TYPE} STREQUAL nativedll)
621 set(__entrypoint DllMain)
622 set(__entrystack 12)
623 elseif(${TYPE} STREQUAL module)
624 set(__entrypoint 0)
625 endif()
626
627 if(DEFINED __entrypoint)
628 if(DEFINED __entrystack)
629 set_entrypoint(${MODULE} ${__entrypoint} ${__entrystack})
630 else()
631 set_entrypoint(${MODULE} ${__entrypoint})
632 endif()
633 endif()
634
635 #set base address
636 if(__module_IMAGEBASE)
637 set_image_base(${MODULE} ${__module_IMAGEBASE})
638 elseif(${TYPE} STREQUAL win32dll)
639 if(DEFINED baseaddress_${MODULE})
640 set_image_base(${MODULE} ${baseaddress_${MODULE}})
641 else()
642 message(STATUS "${MODULE} has no base address")
643 endif()
644 elseif((${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver) OR (${TYPE} STREQUAL kerneldll))
645 set_image_base(${MODULE} 0x00010000)
646 endif()
647
648 # Now do some stuff which is specific to each type
649 if((${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver) OR (${TYPE} STREQUAL kerneldll))
650 add_dependencies(${MODULE} bugcodes)
651 if((${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver))
652 set_target_properties(${MODULE} PROPERTIES SUFFIX ".sys")
653 endif()
654 endif()
655
656 if(${TYPE} STREQUAL win32ocx)
657 set_target_properties(${MODULE} PROPERTIES SUFFIX ".ocx")
658 endif()
659
660 if(${TYPE} STREQUAL cpl)
661 set_target_properties(${MODULE} PROPERTIES SUFFIX ".cpl")
662 endif()
663
664 # do compiler specific stuff
665 set_module_type_toolchain(${MODULE} ${TYPE})
666 endfunction()
667
668 function(start_module_group __name)
669 if(DEFINED CURRENT_MODULE_GROUP)
670 message(FATAL_ERROR "CURRENT_MODULE_GROUP is already set ('${CURRENT_MODULE_GROUP}')")
671 endif()
672 set(CURRENT_MODULE_GROUP ${__name} PARENT_SCOPE)
673 endfunction()
674
675 function(end_module_group)
676 get_property(__modulelist GLOBAL PROPERTY ${CURRENT_MODULE_GROUP}_MODULE_LIST)
677 add_custom_target(${CURRENT_MODULE_GROUP})
678 foreach(__module ${__modulelist})
679 add_dependencies(${CURRENT_MODULE_GROUP} ${__module})
680 endforeach()
681 set(CURRENT_MODULE_GROUP PARENT_SCOPE)
682 endfunction()
683
684 function(preprocess_file __in __out)
685 set(__arg ${__in})
686 foreach(__def ${ARGN})
687 list(APPEND __arg -D${__def})
688 endforeach()
689 if(MSVC)
690 add_custom_command(OUTPUT ${_out}
691 COMMAND ${CMAKE_C_COMPILER} /EP ${__arg}
692 DEPENDS ${__in})
693 else()
694 add_custom_command(OUTPUT ${_out}
695 COMMAND ${CMAKE_C_COMPILER} -E ${__arg}
696 DEPENDS ${__in})
697 endif()
698 endfunction()
699
700 function(get_includes OUTPUT_VAR)
701 get_directory_property(_includes INCLUDE_DIRECTORIES)
702 foreach(arg ${_includes})
703 list(APPEND __tmp_var -I${arg})
704 endforeach()
705 set(${OUTPUT_VAR} ${__tmp_var} PARENT_SCOPE)
706 endfunction()
707
708 function(get_defines OUTPUT_VAR)
709 get_directory_property(_defines COMPILE_DEFINITIONS)
710 foreach(arg ${_defines})
711 list(APPEND __tmp_var -D${arg})
712 endforeach()
713 set(${OUTPUT_VAR} ${__tmp_var} PARENT_SCOPE)
714 endfunction()
715
716 if(NOT MSVC)
717 function(add_object_library _target)
718 add_library(${_target} OBJECT ${ARGN})
719 endfunction()
720 else()
721 function(add_object_library _target)
722 add_library(${_target} ${ARGN})
723 endfunction()
724 endif()
725
726 function(add_registry_inf)
727 # Add to the inf files list
728 foreach(_file ${ARGN})
729 set(_source_file "${CMAKE_CURRENT_SOURCE_DIR}/${_file}")
730 set_property(GLOBAL APPEND PROPERTY REGISTRY_INF_LIST ${_source_file})
731 endforeach()
732 endfunction()
733
734 function(create_registry_hives)
735
736 # Shortcut to the registry.inf file
737 set(_registry_inf "${CMAKE_BINARY_DIR}/boot/bootdata/registry.inf")
738
739 # Get the list of inf files
740 get_property(_inf_files GLOBAL PROPERTY REGISTRY_INF_LIST)
741
742 # Convert files to utf16le
743 foreach(_file ${_inf_files})
744 get_filename_component(_file_name ${_file} NAME_WE)
745 string(REPLACE ${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} _converted_file "${_file}")
746 string(REPLACE ${_file_name} "${_file_name}_utf16" _converted_file ${_converted_file})
747 add_custom_command(OUTPUT ${_converted_file}
748 COMMAND native-utf16le ${_file} ${_converted_file}
749 DEPENDS native-utf16le ${_file})
750 list(APPEND _converted_files ${_converted_file})
751 endforeach()
752
753 # Concatenate all registry files to registry.inf
754 concatenate_files(${_registry_inf} ${_converted_files})
755
756 # Add registry.inf to bootcd
757 add_custom_target(registry_inf DEPENDS ${_registry_inf})
758 add_cd_file(TARGET registry_inf
759 FILE ${_registry_inf}
760 DESTINATION reactos
761 NO_CAB
762 FOR bootcd regtest)
763
764 # livecd hives
765 list(APPEND _livecd_inf_files
766 ${_registry_inf}
767 ${CMAKE_SOURCE_DIR}/boot/bootdata/livecd.inf
768 ${CMAKE_SOURCE_DIR}/boot/bootdata/hiveinst.inf)
769
770 add_custom_command(
771 OUTPUT ${CMAKE_BINARY_DIR}/boot/bootdata/sam
772 ${CMAKE_BINARY_DIR}/boot/bootdata/default
773 ${CMAKE_BINARY_DIR}/boot/bootdata/security
774 ${CMAKE_BINARY_DIR}/boot/bootdata/software
775 ${CMAKE_BINARY_DIR}/boot/bootdata/system
776 COMMAND native-mkhive ${CMAKE_BINARY_DIR}/boot/bootdata/ ${_livecd_inf_files}
777 DEPENDS native-mkhive ${_livecd_inf_files})
778
779 add_custom_target(livecd_hives
780 DEPENDS ${CMAKE_BINARY_DIR}/boot/bootdata/sam
781 ${CMAKE_BINARY_DIR}/boot/bootdata/default
782 ${CMAKE_BINARY_DIR}/boot/bootdata/security
783 ${CMAKE_BINARY_DIR}/boot/bootdata/software
784 ${CMAKE_BINARY_DIR}/boot/bootdata/system)
785
786 add_cd_file(
787 FILE ${CMAKE_BINARY_DIR}/boot/bootdata/sam
788 ${CMAKE_BINARY_DIR}/boot/bootdata/default
789 ${CMAKE_BINARY_DIR}/boot/bootdata/security
790 ${CMAKE_BINARY_DIR}/boot/bootdata/software
791 ${CMAKE_BINARY_DIR}/boot/bootdata/system
792 TARGET livecd_hives
793 DESTINATION reactos/system32/config
794 FOR livecd)
795
796 endfunction()
797
798 if(KDBG)
799 set(ROSSYM_LIB "rossym")
800 else()
801 set(ROSSYM_LIB "")
802 endif()