[SDK][CMAKE] The CMake folder is part of our SDK. CORE-9111
[reactos.git] / reactos / sdk / 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}/sdk/include/c++)
74 include_directories(${REACTOS_SOURCE_DIR}/sdk/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}/sdk/include/reactos/${FILE}.rc ${REACTOS_BINARY_DIR}/sdk/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}/sdk/include/reactos/${FILE}.h ${REACTOS_BINARY_DIR}/sdk/include/reactos/${FILE}.rc
125 PROPERTIES GENERATED TRUE)
126 add_custom_target(${FILE} ALL DEPENDS ${REACTOS_BINARY_DIR}/sdk/include/reactos/${FILE}.h ${REACTOS_BINARY_DIR}/sdk/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" "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 # set entry point
578 if(__module_ENTRYPOINT OR (__module_ENTRYPOINT STREQUAL "0"))
579 list(GET __module_ENTRYPOINT 0 __entrypoint)
580 list(LENGTH __module_ENTRYPOINT __length)
581 if(${__length} EQUAL 2)
582 list(GET __module_ENTRYPOINT 1 __entrystack)
583 elseif(NOT ${__length} EQUAL 1)
584 message(FATAL_ERROR "Wrong arguments for ENTRYPOINT parameter of set_module_type : ${__module_ENTRYPOINT}")
585 endif()
586 unset(__length)
587 elseif(${TYPE} STREQUAL nativecui)
588 set(__entrypoint NtProcessStartup)
589 set(__entrystack 4)
590 elseif(${TYPE} STREQUAL win32cui)
591 if(__module_UNICODE)
592 set(__entrypoint wmainCRTStartup)
593 else()
594 set(__entrypoint mainCRTStartup)
595 endif()
596 elseif(${TYPE} STREQUAL win32gui)
597 if(__module_UNICODE)
598 set(__entrypoint wWinMainCRTStartup)
599 else()
600 set(__entrypoint WinMainCRTStartup)
601 endif()
602 elseif((${TYPE} STREQUAL win32dll) OR (${TYPE} STREQUAL win32ocx)
603 OR (${TYPE} STREQUAL cpl))
604 set(__entrypoint DllMainCRTStartup)
605 set(__entrystack 12)
606 elseif((${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver))
607 set(__entrypoint DriverEntry)
608 set(__entrystack 8)
609 elseif(${TYPE} STREQUAL nativedll)
610 set(__entrypoint DllMain)
611 set(__entrystack 12)
612 elseif(${TYPE} STREQUAL module)
613 set(__entrypoint 0)
614 endif()
615
616 if(DEFINED __entrypoint)
617 if(DEFINED __entrystack)
618 set_entrypoint(${MODULE} ${__entrypoint} ${__entrystack})
619 else()
620 set_entrypoint(${MODULE} ${__entrypoint})
621 endif()
622 endif()
623
624 #set base address
625 if(__module_IMAGEBASE)
626 set_image_base(${MODULE} ${__module_IMAGEBASE})
627 elseif(${TYPE} STREQUAL win32dll)
628 if(DEFINED baseaddress_${MODULE})
629 set_image_base(${MODULE} ${baseaddress_${MODULE}})
630 else()
631 message(STATUS "${MODULE} has no base address")
632 endif()
633 elseif((${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver) OR (${TYPE} STREQUAL kerneldll))
634 set_image_base(${MODULE} 0x00010000)
635 endif()
636
637 # Now do some stuff which is specific to each type
638 if((${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver) OR (${TYPE} STREQUAL kerneldll))
639 add_dependencies(${MODULE} bugcodes xdk)
640 if((${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver))
641 set_target_properties(${MODULE} PROPERTIES SUFFIX ".sys")
642 endif()
643 endif()
644
645 if(${TYPE} STREQUAL win32ocx)
646 set_target_properties(${MODULE} PROPERTIES SUFFIX ".ocx")
647 endif()
648
649 if(${TYPE} STREQUAL cpl)
650 set_target_properties(${MODULE} PROPERTIES SUFFIX ".cpl")
651 endif()
652
653 # do compiler specific stuff
654 set_module_type_toolchain(${MODULE} ${TYPE})
655 endfunction()
656
657 function(start_module_group __name)
658 if(DEFINED CURRENT_MODULE_GROUP)
659 message(FATAL_ERROR "CURRENT_MODULE_GROUP is already set ('${CURRENT_MODULE_GROUP}')")
660 endif()
661 set(CURRENT_MODULE_GROUP ${__name} PARENT_SCOPE)
662 endfunction()
663
664 function(end_module_group)
665 get_property(__modulelist GLOBAL PROPERTY ${CURRENT_MODULE_GROUP}_MODULE_LIST)
666 add_custom_target(${CURRENT_MODULE_GROUP})
667 foreach(__module ${__modulelist})
668 add_dependencies(${CURRENT_MODULE_GROUP} ${__module})
669 endforeach()
670 set(CURRENT_MODULE_GROUP PARENT_SCOPE)
671 endfunction()
672
673 function(preprocess_file __in __out)
674 set(__arg ${__in})
675 foreach(__def ${ARGN})
676 list(APPEND __arg -D${__def})
677 endforeach()
678 if(MSVC)
679 add_custom_command(OUTPUT ${_out}
680 COMMAND ${CMAKE_C_COMPILER} /EP ${__arg}
681 DEPENDS ${__in})
682 else()
683 add_custom_command(OUTPUT ${_out}
684 COMMAND ${CMAKE_C_COMPILER} -E ${__arg}
685 DEPENDS ${__in})
686 endif()
687 endfunction()
688
689 function(get_includes OUTPUT_VAR)
690 get_directory_property(_includes INCLUDE_DIRECTORIES)
691 foreach(arg ${_includes})
692 list(APPEND __tmp_var -I${arg})
693 endforeach()
694 set(${OUTPUT_VAR} ${__tmp_var} PARENT_SCOPE)
695 endfunction()
696
697 function(get_defines OUTPUT_VAR)
698 get_directory_property(_defines COMPILE_DEFINITIONS)
699 foreach(arg ${_defines})
700 list(APPEND __tmp_var -D${arg})
701 endforeach()
702 set(${OUTPUT_VAR} ${__tmp_var} PARENT_SCOPE)
703 endfunction()
704
705 if(NOT MSVC)
706 function(add_object_library _target)
707 add_library(${_target} OBJECT ${ARGN})
708 endfunction()
709 else()
710 function(add_object_library _target)
711 add_library(${_target} ${ARGN})
712 endfunction()
713 endif()
714
715 function(add_registry_inf)
716 # Add to the inf files list
717 foreach(_file ${ARGN})
718 set(_source_file "${CMAKE_CURRENT_SOURCE_DIR}/${_file}")
719 set_property(GLOBAL APPEND PROPERTY REGISTRY_INF_LIST ${_source_file})
720 endforeach()
721 endfunction()
722
723 function(create_registry_hives)
724
725 # Shortcut to the registry.inf file
726 set(_registry_inf "${CMAKE_BINARY_DIR}/boot/bootdata/registry.inf")
727
728 # Get the list of inf files
729 get_property(_inf_files GLOBAL PROPERTY REGISTRY_INF_LIST)
730
731 # Convert files to utf16le
732 foreach(_file ${_inf_files})
733 get_filename_component(_file_name ${_file} NAME_WE)
734 string(REPLACE ${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} _converted_file "${_file}")
735 string(REPLACE ${_file_name} "${_file_name}_utf16" _converted_file ${_converted_file})
736 add_custom_command(OUTPUT ${_converted_file}
737 COMMAND native-utf16le ${_file} ${_converted_file}
738 DEPENDS native-utf16le ${_file})
739 list(APPEND _converted_files ${_converted_file})
740 endforeach()
741
742 # Concatenate all registry files to registry.inf
743 concatenate_files(${_registry_inf} ${_converted_files})
744
745 # Add registry.inf to bootcd
746 add_custom_target(registry_inf DEPENDS ${_registry_inf})
747 add_cd_file(TARGET registry_inf
748 FILE ${_registry_inf}
749 DESTINATION reactos
750 NO_CAB
751 FOR bootcd regtest)
752
753 # livecd hives
754 list(APPEND _livecd_inf_files
755 ${_registry_inf}
756 ${CMAKE_SOURCE_DIR}/boot/bootdata/livecd.inf
757 ${CMAKE_SOURCE_DIR}/boot/bootdata/hiveinst.inf)
758
759 add_custom_command(
760 OUTPUT ${CMAKE_BINARY_DIR}/boot/bootdata/sam
761 ${CMAKE_BINARY_DIR}/boot/bootdata/default
762 ${CMAKE_BINARY_DIR}/boot/bootdata/security
763 ${CMAKE_BINARY_DIR}/boot/bootdata/software
764 ${CMAKE_BINARY_DIR}/boot/bootdata/system
765 COMMAND native-mkhive ${CMAKE_BINARY_DIR}/boot/bootdata/ ${_livecd_inf_files}
766 DEPENDS native-mkhive ${_livecd_inf_files})
767
768 add_custom_target(livecd_hives
769 DEPENDS ${CMAKE_BINARY_DIR}/boot/bootdata/sam
770 ${CMAKE_BINARY_DIR}/boot/bootdata/default
771 ${CMAKE_BINARY_DIR}/boot/bootdata/security
772 ${CMAKE_BINARY_DIR}/boot/bootdata/software
773 ${CMAKE_BINARY_DIR}/boot/bootdata/system)
774
775 add_cd_file(
776 FILE ${CMAKE_BINARY_DIR}/boot/bootdata/sam
777 ${CMAKE_BINARY_DIR}/boot/bootdata/default
778 ${CMAKE_BINARY_DIR}/boot/bootdata/security
779 ${CMAKE_BINARY_DIR}/boot/bootdata/software
780 ${CMAKE_BINARY_DIR}/boot/bootdata/system
781 TARGET livecd_hives
782 DESTINATION reactos/system32/config
783 FOR livecd)
784
785 # BCD Hive
786 add_custom_command(
787 OUTPUT ${CMAKE_BINARY_DIR}/boot/bootdata/BCD
788 COMMAND native-mkhive ${CMAKE_BINARY_DIR}/boot/bootdata/ ${CMAKE_BINARY_DIR}/boot/bootdata/hivebcd_utf16.inf
789 DEPENDS native-mkhive ${CMAKE_SOURCE_DIR}/boot/bootdata/hivebcd.inf)
790
791 add_custom_target(bcd_hive
792 DEPENDS ${CMAKE_BINARY_DIR}/boot/bootdata/BCD)
793
794 add_cd_file(
795 FILE ${CMAKE_BINARY_DIR}/boot/bootdata/BCD
796 TARGET bcd_hive
797 DESTINATION efi/boot
798 NO_CAB
799 FOR bootcd regtest livecd)
800
801 endfunction()
802
803 if(KDBG)
804 set(ROSSYM_LIB "rossym")
805 else()
806 set(ROSSYM_LIB "")
807 endif()
808
809 function(add_rc_deps _target_rc)
810 set_source_files_properties(${_target_rc} PROPERTIES OBJECT_DEPENDS "${ARGN}")
811 endfunction()