Merge PR #283 "[USBPORT] Transaction Translator (TT) support bringup"
[reactos.git] / 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(_file ${ARGN})
117 get_filename_component(_file_name ${_file} NAME_WE)
118 set(_converted_file ${CMAKE_CURRENT_BINARY_DIR}/${_file}) ## ${_file_name}.mc
119 set(_source_file ${CMAKE_CURRENT_SOURCE_DIR}/${_file}) ## ${_file_name}.mc
120 add_custom_command(
121 OUTPUT "${_converted_file}"
122 COMMAND native-utf16le "${_source_file}" "${_converted_file}" nobom
123 DEPENDS native-utf16le "${_source_file}")
124 macro_mc(${_flag} ${_converted_file})
125 add_custom_command(
126 OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${_file_name}.h ${CMAKE_CURRENT_BINARY_DIR}/${_file_name}.rc
127 COMMAND ${COMMAND_MC}
128 DEPENDS "${_converted_file}")
129 set_source_files_properties(
130 ${CMAKE_CURRENT_BINARY_DIR}/${_file_name}.h ${CMAKE_CURRENT_BINARY_DIR}/${_file_name}.rc
131 PROPERTIES GENERATED TRUE)
132 add_custom_target(${_file_name} ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${_file_name}.h ${CMAKE_CURRENT_BINARY_DIR}/${_file_name}.rc)
133 endforeach()
134 endfunction()
135
136 function(add_link)
137 cmake_parse_arguments(_LINK "MINIMIZE" "NAME;PATH;CMD_LINE_ARGS;ICON;GUID" "" ${ARGN})
138 if(NOT _LINK_NAME OR NOT _LINK_PATH)
139 message(FATAL_ERROR "You must provide name and path")
140 endif()
141
142 if(_LINK_CMD_LINE_ARGS)
143 set(_LINK_CMD_LINE_ARGS -c ${_LINK_CMD_LINE_ARGS})
144 endif()
145
146 if(_LINK_ICON)
147 set(_LINK_ICON -i ${_LINK_ICON})
148 endif()
149
150 if(_LINK_GUID)
151 set(_LINK_GUID -g ${_LINK_GUID})
152 endif()
153
154 if(_LINK_MINIMIZE)
155 set(_LINK_MINIMIZE "-m")
156 endif()
157
158 add_custom_command(
159 OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${_LINK_NAME}.lnk
160 COMMAND native-mkshelllink -o ${CMAKE_CURRENT_BINARY_DIR}/${_LINK_NAME}.lnk ${_LINK_CMD_LINE_ARGS} ${_LINK_ICON} ${_LINK_GUID} ${_LINK_MINIMIZE} ${_LINK_PATH}
161 DEPENDS native-mkshelllink)
162 set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/${_LINK_NAME}.lnk PROPERTIES GENERATED TRUE)
163 endfunction()
164
165 macro(dir_to_num dir var)
166 if(${dir} STREQUAL reactos/system32)
167 set(${var} 1)
168 elseif(${dir} STREQUAL reactos/system32/drivers)
169 set(${var} 2)
170 elseif(${dir} STREQUAL reactos/Fonts)
171 set(${var} 3)
172 elseif(${dir} STREQUAL reactos)
173 set(${var} 4)
174 elseif(${dir} STREQUAL reactos/system32/drivers/etc)
175 set(${var} 5)
176 elseif(${dir} STREQUAL reactos/inf)
177 set(${var} 6)
178 elseif(${dir} STREQUAL reactos/bin)
179 set(${var} 7)
180 elseif(${dir} STREQUAL reactos/bin/testdata)
181 set(${var} 8)
182 elseif(${dir} STREQUAL reactos/bin/suppl)
183 set(${var} 80)
184 elseif(${dir} STREQUAL reactos/media)
185 set(${var} 9)
186 elseif(${dir} STREQUAL reactos/Microsoft.NET)
187 set(${var} 10)
188 elseif(${dir} STREQUAL reactos/Microsoft.NET/Framework)
189 set(${var} 11)
190 elseif(${dir} STREQUAL reactos/Microsoft.NET/Framework/v1.0.3705)
191 set(${var} 12)
192 elseif(${dir} STREQUAL reactos/Microsoft.NET/Framework/v1.1.4322)
193 set(${var} 13)
194 elseif(${dir} STREQUAL reactos/Microsoft.NET/Framework/v2.0.50727)
195 set(${var} 14)
196 elseif(${dir} STREQUAL reactos/Resources)
197 set(${var} 15)
198 elseif(${dir} STREQUAL reactos/Resources/Themes)
199 set(${var} 16)
200 elseif(${dir} STREQUAL reactos/system32/wbem)
201 set(${var} 17)
202 elseif(${dir} STREQUAL reactos/Resources/Themes/Lautus)
203 set(${var} 18)
204 elseif(${dir} STREQUAL reactos/Help)
205 set(${var} 19)
206 elseif(${dir} STREQUAL reactos/Config)
207 set(${var} 20)
208 elseif(${dir} STREQUAL reactos/Cursors)
209 set(${var} 21)
210 elseif(${dir} STREQUAL reactos/system32/ShellExt)
211 set(${var} 22)
212 elseif(${dir} STREQUAL reactos/Temp)
213 set(${var} 23)
214 elseif(${dir} STREQUAL reactos/system32/spool)
215 set(${var} 24)
216 elseif(${dir} STREQUAL reactos/system32/spool/drivers)
217 set(${var} 25)
218 elseif(${dir} STREQUAL reactos/system32/spool/drivers/color)
219 set(${var} 26)
220 elseif(${dir} STREQUAL reactos/system32/spool/drivers/w32x86)
221 set(${var} 27)
222 elseif(${dir} STREQUAL reactos/system32/spool/drivers/w32x86/3)
223 set(${var} 28)
224 elseif(${dir} STREQUAL reactos/system32/spool/prtprocs)
225 set(${var} 29)
226 elseif(${dir} STREQUAL reactos/system32/spool/prtprocs/w32x86)
227 set(${var} 30)
228 elseif(${dir} STREQUAL reactos/system32/spool/PRINTERS)
229 set(${var} 31)
230 elseif(${dir} STREQUAL reactos/system32/wbem/Repository)
231 set(${var} 32)
232 elseif(${dir} STREQUAL reactos/system32/wbem/Repository/FS)
233 set(${var} 33)
234 elseif(${dir} STREQUAL reactos/system32/wbem/mof/good)
235 set(${var} 34)
236 elseif(${dir} STREQUAL reactos/system32/wbem/mof/bad)
237 set(${var} 35)
238 elseif(${dir} STREQUAL reactos/system32/wbem/AdStatus)
239 set(${var} 36)
240 elseif(${dir} STREQUAL reactos/system32/wbem/xml)
241 set(${var} 37)
242 elseif(${dir} STREQUAL reactos/system32/wbem/Logs)
243 set(${var} 38)
244 elseif(${dir} STREQUAL reactos/system32/wbem/AutoRecover)
245 set(${var} 39)
246 elseif(${dir} STREQUAL reactos/system32/wbem/snmp)
247 set(${var} 40)
248 elseif(${dir} STREQUAL reactos/system32/wbem/Performance)
249 set(${var} 41)
250 elseif(${dir} STREQUAL reactos/twain_32)
251 set(${var} 42)
252 elseif(${dir} STREQUAL reactos/repair)
253 set(${var} 43)
254 elseif(${dir} STREQUAL reactos/Web)
255 set(${var} 44)
256 elseif(${dir} STREQUAL reactos/Web/Wallpaper)
257 set(${var} 45)
258 elseif(${dir} STREQUAL reactos/Prefetch)
259 set(${var} 46)
260 elseif(${dir} STREQUAL reactos/security)
261 set(${var} 47)
262 elseif(${dir} STREQUAL reactos/security/Database)
263 set(${var} 48)
264 elseif(${dir} STREQUAL reactos/security/logs)
265 set(${var} 49)
266 elseif(${dir} STREQUAL reactos/security/templates)
267 set(${var} 50)
268 elseif(${dir} STREQUAL reactos/system32/CatRoot)
269 set(${var} 51)
270 elseif(${dir} STREQUAL reactos/system32/CatRoot2)
271 set(${var} 52)
272 elseif(${dir} STREQUAL reactos/AppPatch)
273 set(${var} 53)
274 elseif(${dir} STREQUAL reactos/winsxs)
275 set(${var} 54)
276 elseif(${dir} STREQUAL reactos/winsxs/manifests)
277 set(${var} 55)
278 elseif(${dir} STREQUAL reactos/winsxs/x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.2600.2982_none_deadbeef)
279 set(${var} 56)
280 elseif(${dir} STREQUAL reactos/winsxs/x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.2600.2982_none_deadbeef)
281 set(${var} 57)
282 elseif(${dir} STREQUAL reactos/winsxs/x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.23038_none_deadbeef)
283 set(${var} 58)
284 else()
285 message(FATAL_ERROR "Wrong destination: ${dir}")
286 endif()
287 endmacro()
288
289 function(add_cd_file)
290 cmake_parse_arguments(_CD "NO_CAB;NOT_IN_HYBRIDCD" "DESTINATION;NAME_ON_CD;TARGET" "FILE;FOR" ${ARGN})
291 if(NOT (_CD_TARGET OR _CD_FILE))
292 message(FATAL_ERROR "You must provide a target or a file to install!")
293 endif()
294
295 if(NOT _CD_DESTINATION)
296 message(FATAL_ERROR "You must provide a destination")
297 elseif(${_CD_DESTINATION} STREQUAL root)
298 set(_CD_DESTINATION "")
299 endif()
300
301 if(NOT _CD_FOR)
302 message(FATAL_ERROR "You must provide a cd name (or \"all\" for all of them) to install the file on!")
303 endif()
304
305 # get file if we need to
306 if(NOT _CD_FILE)
307 get_target_property(_CD_FILE ${_CD_TARGET} LOCATION_${CMAKE_BUILD_TYPE})
308 endif()
309
310 # do we add it to all CDs?
311 list(FIND _CD_FOR all __cd)
312 if(NOT __cd EQUAL -1)
313 list(REMOVE_AT _CD_FOR __cd)
314 list(INSERT _CD_FOR __cd "bootcd;livecd;regtest")
315 endif()
316
317 # do we add it to bootcd?
318 list(FIND _CD_FOR bootcd __cd)
319 if(NOT __cd EQUAL -1)
320 # whether or not we should put it in reactos.cab or directly on cd
321 if(_CD_NO_CAB)
322 # directly on cd
323 foreach(item ${_CD_FILE})
324 if(_CD_NAME_ON_CD)
325 # rename it in the cd tree
326 set(__file ${_CD_NAME_ON_CD})
327 else()
328 get_filename_component(__file ${item} NAME)
329 endif()
330 set_property(GLOBAL APPEND PROPERTY BOOTCD_FILE_LIST "${_CD_DESTINATION}/${__file}=${item}")
331 # add it also into the hybridcd if not specified otherwise
332 if(NOT _CD_NOT_IN_HYBRIDCD)
333 set_property(GLOBAL APPEND PROPERTY HYBRIDCD_FILE_LIST "bootcd/${_CD_DESTINATION}/${__file}=${item}")
334 endif()
335 endforeach()
336 # manage dependency
337 if(_CD_TARGET)
338 add_dependencies(bootcd ${_CD_TARGET} registry_inf)
339 endif()
340 else()
341 # add it in reactos.cab
342 dir_to_num(${_CD_DESTINATION} _num)
343 file(RELATIVE_PATH __relative_file ${REACTOS_SOURCE_DIR} ${_CD_FILE})
344 file(APPEND ${REACTOS_BINARY_DIR}/boot/bootdata/packages/reactos.dff.dyn "\"${__relative_file}\" ${_num}\n")
345 unset(__relative_file)
346 # manage dependency - target level
347 if(_CD_TARGET)
348 add_dependencies(reactos_cab_inf ${_CD_TARGET})
349 endif()
350 # manage dependency - file level
351 set_property(GLOBAL APPEND PROPERTY REACTOS_CAB_DEPENDS ${_CD_FILE})
352 endif()
353 endif() #end bootcd
354
355 # do we add it to livecd?
356 list(FIND _CD_FOR livecd __cd)
357 if(NOT __cd EQUAL -1)
358 # manage dependency
359 if(_CD_TARGET)
360 add_dependencies(livecd ${_CD_TARGET} registry_inf)
361 endif()
362 foreach(item ${_CD_FILE})
363 if(_CD_NAME_ON_CD)
364 # rename it in the cd tree
365 set(__file ${_CD_NAME_ON_CD})
366 else()
367 get_filename_component(__file ${item} NAME)
368 endif()
369 set_property(GLOBAL APPEND PROPERTY LIVECD_FILE_LIST "${_CD_DESTINATION}/${__file}=${item}")
370 # add it also into the hybridcd if not specified otherwise
371 if(NOT _CD_NOT_IN_HYBRIDCD)
372 set_property(GLOBAL APPEND PROPERTY HYBRIDCD_FILE_LIST "livecd/${_CD_DESTINATION}/${__file}=${item}")
373 endif()
374 endforeach()
375 endif() #end livecd
376
377 # do we need also to add it to hybridcd?
378 list(FIND _CD_FOR hybridcd __cd)
379 if(NOT __cd EQUAL -1)
380 # manage dependency
381 if(_CD_TARGET)
382 add_dependencies(hybridcd ${_CD_TARGET})
383 endif()
384 foreach(item ${_CD_FILE})
385 if(_CD_NAME_ON_CD)
386 # rename it in the cd tree
387 set(__file ${_CD_NAME_ON_CD})
388 else()
389 get_filename_component(__file ${item} NAME)
390 endif()
391 set_property(GLOBAL APPEND PROPERTY HYBRIDCD_FILE_LIST "${_CD_DESTINATION}/${__file}=${item}")
392 endforeach()
393 endif() #end hybridcd
394
395 # do we add it to regtest?
396 list(FIND _CD_FOR regtest __cd)
397 if(NOT __cd EQUAL -1)
398 # whether or not we should put it in reactos.cab or directly on cd
399 if(_CD_NO_CAB)
400 # directly on cd
401 foreach(item ${_CD_FILE})
402 if(_CD_NAME_ON_CD)
403 # rename it in the cd tree
404 set(__file ${_CD_NAME_ON_CD})
405 else()
406 get_filename_component(__file ${item} NAME)
407 endif()
408 set_property(GLOBAL APPEND PROPERTY BOOTCDREGTEST_FILE_LIST "${_CD_DESTINATION}/${__file}=${item}")
409 endforeach()
410 # manage dependency
411 if(_CD_TARGET)
412 add_dependencies(bootcdregtest ${_CD_TARGET} registry_inf)
413 endif()
414 else()
415 #add it in reactos.cab
416 #dir_to_num(${_CD_DESTINATION} _num)
417 #file(APPEND ${REACTOS_BINARY_DIR}/boot/bootdata/packages/reactos.dff.dyn "${_CD_FILE} ${_num}\n")
418 #if(_CD_TARGET)
419 # #manage dependency
420 # add_dependencies(reactos_cab ${_CD_TARGET})
421 #endif()
422 endif()
423 endif() #end bootcd
424 endfunction()
425
426 function(create_iso_lists)
427 # generate reactos.cab before anything else
428 get_property(_filelist GLOBAL PROPERTY REACTOS_CAB_DEPENDS)
429
430 # begin with reactos.inf. We want this command to be always executed, so we pretend it generates another file although it will never do.
431 add_custom_command(
432 OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/reactos.inf ${CMAKE_CURRENT_BINARY_DIR}/__some_non_existent_file
433 COMMAND ${CMAKE_COMMAND} -E copy_if_different ${REACTOS_BINARY_DIR}/boot/bootdata/packages/reactos.inf ${CMAKE_CURRENT_BINARY_DIR}/reactos.inf
434 DEPENDS ${REACTOS_BINARY_DIR}/boot/bootdata/packages/reactos.inf reactos_cab_inf)
435
436 add_custom_command(
437 OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/reactos.cab
438 COMMAND native-cabman -C ${REACTOS_BINARY_DIR}/boot/bootdata/packages/reactos.dff -RC ${CMAKE_CURRENT_BINARY_DIR}/reactos.inf -N -P ${REACTOS_SOURCE_DIR}
439 DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/reactos.inf native-cabman ${_filelist})
440
441 add_custom_target(reactos_cab DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/reactos.cab)
442 add_dependencies(reactos_cab reactos_cab_inf)
443
444 add_cd_file(
445 TARGET reactos_cab
446 FILE ${CMAKE_CURRENT_BINARY_DIR}/reactos.cab
447 DESTINATION reactos
448 NO_CAB FOR bootcd regtest)
449
450 add_cd_file(
451 FILE ${CMAKE_CURRENT_BINARY_DIR}/livecd.iso
452 DESTINATION livecd
453 FOR hybridcd)
454
455 get_property(_filelist GLOBAL PROPERTY BOOTCD_FILE_LIST)
456 string(REPLACE ";" "\n" _filelist "${_filelist}")
457 file(APPEND ${REACTOS_BINARY_DIR}/boot/bootcd.lst "${_filelist}")
458 unset(_filelist)
459
460 get_property(_filelist GLOBAL PROPERTY LIVECD_FILE_LIST)
461 string(REPLACE ";" "\n" _filelist "${_filelist}")
462 file(APPEND ${REACTOS_BINARY_DIR}/boot/livecd.lst "${_filelist}")
463 unset(_filelist)
464
465 get_property(_filelist GLOBAL PROPERTY HYBRIDCD_FILE_LIST)
466 string(REPLACE ";" "\n" _filelist "${_filelist}")
467 file(APPEND ${REACTOS_BINARY_DIR}/boot/hybridcd.lst "${_filelist}")
468 unset(_filelist)
469
470 get_property(_filelist GLOBAL PROPERTY BOOTCDREGTEST_FILE_LIST)
471 string(REPLACE ";" "\n" _filelist "${_filelist}")
472 file(APPEND ${REACTOS_BINARY_DIR}/boot/bootcdregtest.lst "${_filelist}")
473 unset(_filelist)
474 endfunction()
475
476 # Create module_clean targets
477 function(add_clean_target _target)
478 set(_clean_working_directory ${CMAKE_CURRENT_BINARY_DIR})
479 if(CMAKE_GENERATOR STREQUAL "Unix Makefiles" OR CMAKE_GENERATOR STREQUAL "MinGW Makefiles")
480 set(_clean_command make clean)
481 elseif(CMAKE_GENERATOR STREQUAL "NMake Makefiles")
482 set(_clean_command nmake /nologo clean)
483 elseif(CMAKE_GENERATOR STREQUAL "Ninja")
484 set(_clean_command ninja -t clean ${_target})
485 set(_clean_working_directory ${REACTOS_BINARY_DIR})
486 endif()
487 add_custom_target(${_target}_clean
488 COMMAND ${_clean_command}
489 WORKING_DIRECTORY ${_clean_working_directory}
490 COMMENT "Cleaning ${_target}")
491 endfunction()
492
493 if(NOT MSVC_IDE)
494 function(add_library name)
495 _add_library(${name} ${ARGN})
496 add_clean_target(${name})
497 endfunction()
498
499 function(add_executable name)
500 _add_executable(${name} ${ARGN})
501 add_clean_target(${name})
502 endfunction()
503 elseif(USE_FOLDER_STRUCTURE)
504 set_property(GLOBAL PROPERTY USE_FOLDERS ON)
505 string(LENGTH ${CMAKE_SOURCE_DIR} CMAKE_SOURCE_DIR_LENGTH)
506
507 function(add_custom_target name)
508 _add_custom_target(${name} ${ARGN})
509 string(SUBSTRING ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR_LENGTH} -1 CMAKE_CURRENT_SOURCE_DIR_RELATIVE)
510 set_property(TARGET "${name}" PROPERTY FOLDER "${CMAKE_CURRENT_SOURCE_DIR_RELATIVE}")
511 endfunction()
512
513 function(add_library name)
514 _add_library(${name} ${ARGN})
515 get_target_property(_target_excluded ${name} EXCLUDE_FROM_ALL)
516 if(_target_excluded AND ${name} MATCHES "^lib.*")
517 set_property(TARGET "${name}" PROPERTY FOLDER "Importlibs")
518 else()
519 string(SUBSTRING ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR_LENGTH} -1 CMAKE_CURRENT_SOURCE_DIR_RELATIVE)
520 set_property(TARGET "${name}" PROPERTY FOLDER "${CMAKE_CURRENT_SOURCE_DIR_RELATIVE}")
521 endif()
522 endfunction()
523
524 function(add_executable name)
525 _add_executable(${name} ${ARGN})
526 string(SUBSTRING ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR_LENGTH} -1 CMAKE_CURRENT_SOURCE_DIR_RELATIVE)
527 set_property(TARGET "${name}" PROPERTY FOLDER "${CMAKE_CURRENT_SOURCE_DIR_RELATIVE}")
528 endfunction()
529 endif()
530
531 if(CMAKE_HOST_SYSTEM_NAME STREQUAL "Windows")
532 function(concatenate_files _output _file1)
533 file(TO_NATIVE_PATH "${_output}" _real_output)
534 file(TO_NATIVE_PATH "${_file1}" _file_list)
535 foreach(_file ${ARGN})
536 file(TO_NATIVE_PATH "${_file}" _real_file)
537 set(_file_list "${_file_list} + ${_real_file}")
538 endforeach()
539 add_custom_command(
540 OUTPUT ${_output}
541 COMMAND cmd.exe /C "copy /Y /B ${_file_list} ${_real_output} > nul"
542 DEPENDS ${_file1} ${ARGN})
543 endfunction()
544 else()
545 macro(concatenate_files _output)
546 add_custom_command(
547 OUTPUT ${_output}
548 COMMAND cat ${ARGN} > ${_output}
549 DEPENDS ${ARGN})
550 endmacro()
551 endif()
552
553 function(add_importlibs _module)
554 add_dependency_node(${_module})
555 foreach(LIB ${ARGN})
556 if("${LIB}" MATCHES "msvcrt")
557 add_target_compile_definitions(${_module} _DLL __USE_CRTIMP)
558 target_link_libraries(${_module} msvcrtex)
559 endif()
560 target_link_libraries(${_module} lib${LIB})
561 add_dependencies(${_module} lib${LIB})
562 add_dependency_edge(${_module} ${LIB})
563 endforeach()
564 endfunction()
565
566 function(set_module_type MODULE TYPE)
567 cmake_parse_arguments(__module "UNICODE" "IMAGEBASE" "ENTRYPOINT" ${ARGN})
568
569 if(__module_UNPARSED_ARGUMENTS)
570 message(STATUS "set_module_type : unparsed arguments ${__module_UNPARSED_ARGUMENTS}, module : ${MODULE}")
571 endif()
572
573 # Add the module to the module group list, if it is defined
574 if(DEFINED CURRENT_MODULE_GROUP)
575 set_property(GLOBAL APPEND PROPERTY ${CURRENT_MODULE_GROUP}_MODULE_LIST "${MODULE}")
576 endif()
577
578 # Set subsystem. Also take this as an occasion
579 # to error out if someone gave a non existing type
580 if((${TYPE} STREQUAL nativecui) OR (${TYPE} STREQUAL nativedll)
581 OR (${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver) OR (${TYPE} STREQUAL kerneldll))
582 set(__subsystem native)
583 elseif(${TYPE} STREQUAL win32cui)
584 set(__subsystem console)
585 elseif(${TYPE} STREQUAL win32gui)
586 set(__subsystem windows)
587 elseif(NOT ((${TYPE} STREQUAL win32dll) OR (${TYPE} STREQUAL win32ocx)
588 OR (${TYPE} STREQUAL cpl) OR (${TYPE} STREQUAL module)))
589 message(FATAL_ERROR "Unknown type ${TYPE} for module ${MODULE}")
590 endif()
591
592 if(DEFINED __subsystem)
593 set_subsystem(${MODULE} ${__subsystem})
594 endif()
595
596 # Set the PE image version numbers from the NT OS version ReactOS is based on
597 if (MSVC)
598 add_target_link_flags(${MODULE} "/VERSION:5.01")
599 else()
600 add_target_link_flags(${MODULE} "-Wl,--major-image-version,5 -Wl,--minor-image-version,01")
601 add_target_link_flags(${MODULE} "-Wl,--major-os-version,5 -Wl,--minor-os-version,01")
602 endif()
603
604 # Set unicode definitions
605 if(__module_UNICODE)
606 add_target_compile_definitions(${MODULE} UNICODE _UNICODE)
607 endif()
608
609 # Set entry point
610 if(__module_ENTRYPOINT OR (__module_ENTRYPOINT STREQUAL "0"))
611 list(GET __module_ENTRYPOINT 0 __entrypoint)
612 list(LENGTH __module_ENTRYPOINT __length)
613 if(${__length} EQUAL 2)
614 list(GET __module_ENTRYPOINT 1 __entrystack)
615 elseif(NOT ${__length} EQUAL 1)
616 message(FATAL_ERROR "Wrong arguments for ENTRYPOINT parameter of set_module_type : ${__module_ENTRYPOINT}")
617 endif()
618 unset(__length)
619 elseif(${TYPE} STREQUAL nativecui)
620 set(__entrypoint NtProcessStartup)
621 set(__entrystack 4)
622 elseif(${TYPE} STREQUAL win32cui)
623 if(__module_UNICODE)
624 set(__entrypoint wmainCRTStartup)
625 else()
626 set(__entrypoint mainCRTStartup)
627 endif()
628 elseif(${TYPE} STREQUAL win32gui)
629 if(__module_UNICODE)
630 set(__entrypoint wWinMainCRTStartup)
631 else()
632 set(__entrypoint WinMainCRTStartup)
633 endif()
634 elseif((${TYPE} STREQUAL win32dll) OR (${TYPE} STREQUAL win32ocx)
635 OR (${TYPE} STREQUAL cpl))
636 set(__entrypoint DllMainCRTStartup)
637 set(__entrystack 12)
638 elseif((${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver))
639 set(__entrypoint DriverEntry)
640 set(__entrystack 8)
641 elseif(${TYPE} STREQUAL nativedll)
642 set(__entrypoint DllMain)
643 set(__entrystack 12)
644 elseif(${TYPE} STREQUAL module)
645 set(__entrypoint 0)
646 endif()
647
648 if(DEFINED __entrypoint)
649 if(DEFINED __entrystack)
650 set_entrypoint(${MODULE} ${__entrypoint} ${__entrystack})
651 else()
652 set_entrypoint(${MODULE} ${__entrypoint})
653 endif()
654 endif()
655
656 # Set base address
657 if(__module_IMAGEBASE)
658 set_image_base(${MODULE} ${__module_IMAGEBASE})
659 elseif(${TYPE} STREQUAL win32dll)
660 if(DEFINED baseaddress_${MODULE})
661 set_image_base(${MODULE} ${baseaddress_${MODULE}})
662 else()
663 message(STATUS "${MODULE} has no base address")
664 endif()
665 elseif((${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver) OR (${TYPE} STREQUAL kerneldll))
666 set_image_base(${MODULE} 0x00010000)
667 endif()
668
669 # Now do some stuff which is specific to each type
670 if((${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver) OR (${TYPE} STREQUAL kerneldll))
671 add_dependencies(${MODULE} bugcodes xdk)
672 if((${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver))
673 set_target_properties(${MODULE} PROPERTIES SUFFIX ".sys")
674 endif()
675 endif()
676
677 if(${TYPE} STREQUAL win32ocx)
678 set_target_properties(${MODULE} PROPERTIES SUFFIX ".ocx")
679 endif()
680
681 if(${TYPE} STREQUAL cpl)
682 set_target_properties(${MODULE} PROPERTIES SUFFIX ".cpl")
683 endif()
684
685 # Do compiler specific stuff
686 set_module_type_toolchain(${MODULE} ${TYPE})
687 endfunction()
688
689 function(start_module_group __name)
690 if(DEFINED CURRENT_MODULE_GROUP)
691 message(FATAL_ERROR "CURRENT_MODULE_GROUP is already set ('${CURRENT_MODULE_GROUP}')")
692 endif()
693 set(CURRENT_MODULE_GROUP ${__name} PARENT_SCOPE)
694 endfunction()
695
696 function(end_module_group)
697 get_property(__modulelist GLOBAL PROPERTY ${CURRENT_MODULE_GROUP}_MODULE_LIST)
698 add_custom_target(${CURRENT_MODULE_GROUP})
699 foreach(__module ${__modulelist})
700 add_dependencies(${CURRENT_MODULE_GROUP} ${__module})
701 endforeach()
702 set(CURRENT_MODULE_GROUP PARENT_SCOPE)
703 endfunction()
704
705 function(preprocess_file __in __out)
706 set(__arg ${__in})
707 foreach(__def ${ARGN})
708 list(APPEND __arg -D${__def})
709 endforeach()
710 if(MSVC)
711 add_custom_command(OUTPUT ${_out}
712 COMMAND ${CMAKE_C_COMPILER} /EP ${__arg}
713 DEPENDS ${__in})
714 else()
715 add_custom_command(OUTPUT ${_out}
716 COMMAND ${CMAKE_C_COMPILER} -E ${__arg}
717 DEPENDS ${__in})
718 endif()
719 endfunction()
720
721 function(get_includes OUTPUT_VAR)
722 get_directory_property(_includes INCLUDE_DIRECTORIES)
723 foreach(arg ${_includes})
724 list(APPEND __tmp_var -I${arg})
725 endforeach()
726 set(${OUTPUT_VAR} ${__tmp_var} PARENT_SCOPE)
727 endfunction()
728
729 function(get_defines OUTPUT_VAR)
730 get_directory_property(_defines COMPILE_DEFINITIONS)
731 foreach(arg ${_defines})
732 list(APPEND __tmp_var -D${arg})
733 endforeach()
734 set(${OUTPUT_VAR} ${__tmp_var} PARENT_SCOPE)
735 endfunction()
736
737 if(NOT MSVC)
738 function(add_object_library _target)
739 add_library(${_target} OBJECT ${ARGN})
740 endfunction()
741 else()
742 function(add_object_library _target)
743 add_library(${_target} ${ARGN})
744 endfunction()
745 endif()
746
747 function(add_registry_inf)
748 # Add to the inf files list
749 foreach(_file ${ARGN})
750 set(_source_file "${CMAKE_CURRENT_SOURCE_DIR}/${_file}")
751 set_property(GLOBAL APPEND PROPERTY REGISTRY_INF_LIST ${_source_file})
752 endforeach()
753 endfunction()
754
755 function(create_registry_hives)
756
757 # Shortcut to the registry.inf file
758 set(_registry_inf "${CMAKE_BINARY_DIR}/boot/bootdata/registry.inf")
759
760 # Get the list of inf files
761 get_property(_inf_files GLOBAL PROPERTY REGISTRY_INF_LIST)
762
763 # Convert files to utf16le
764 foreach(_file ${_inf_files})
765 get_filename_component(_file_name ${_file} NAME_WE)
766 string(REPLACE ${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} _converted_file "${_file}")
767 string(REPLACE ${_file_name} "${_file_name}_utf16" _converted_file ${_converted_file})
768 add_custom_command(OUTPUT ${_converted_file}
769 COMMAND native-utf16le ${_file} ${_converted_file}
770 DEPENDS native-utf16le ${_file})
771 list(APPEND _converted_files ${_converted_file})
772 endforeach()
773
774 # Concatenate all registry files to registry.inf
775 concatenate_files(${_registry_inf} ${_converted_files})
776
777 # Add registry.inf to bootcd
778 add_custom_target(registry_inf DEPENDS ${_registry_inf})
779 add_cd_file(TARGET registry_inf
780 FILE ${_registry_inf}
781 DESTINATION reactos
782 NO_CAB
783 FOR bootcd regtest)
784
785 # livecd hives
786 list(APPEND _livecd_inf_files
787 ${_registry_inf}
788 ${CMAKE_SOURCE_DIR}/boot/bootdata/livecd.inf
789 ${CMAKE_SOURCE_DIR}/boot/bootdata/hiveinst.inf)
790
791 add_custom_command(
792 OUTPUT ${CMAKE_BINARY_DIR}/boot/bootdata/sam
793 ${CMAKE_BINARY_DIR}/boot/bootdata/default
794 ${CMAKE_BINARY_DIR}/boot/bootdata/security
795 ${CMAKE_BINARY_DIR}/boot/bootdata/software
796 ${CMAKE_BINARY_DIR}/boot/bootdata/system
797 ${CMAKE_BINARY_DIR}/boot/bootdata/BCD
798 COMMAND native-mkhive ${CMAKE_BINARY_DIR}/boot/bootdata ${_livecd_inf_files}
799 DEPENDS native-mkhive ${_livecd_inf_files})
800
801 add_custom_target(livecd_hives
802 DEPENDS ${CMAKE_BINARY_DIR}/boot/bootdata/sam
803 ${CMAKE_BINARY_DIR}/boot/bootdata/default
804 ${CMAKE_BINARY_DIR}/boot/bootdata/security
805 ${CMAKE_BINARY_DIR}/boot/bootdata/software
806 ${CMAKE_BINARY_DIR}/boot/bootdata/system
807 ${CMAKE_BINARY_DIR}/boot/bootdata/BCD)
808
809 add_cd_file(
810 FILE ${CMAKE_BINARY_DIR}/boot/bootdata/sam
811 ${CMAKE_BINARY_DIR}/boot/bootdata/default
812 ${CMAKE_BINARY_DIR}/boot/bootdata/security
813 ${CMAKE_BINARY_DIR}/boot/bootdata/software
814 ${CMAKE_BINARY_DIR}/boot/bootdata/system
815 TARGET livecd_hives
816 DESTINATION reactos/system32/config
817 FOR livecd)
818
819 add_cd_file(
820 FILE ${CMAKE_BINARY_DIR}/boot/bootdata/BCD
821 TARGET livecd_hives
822 DESTINATION efi/boot
823 NO_CAB
824 FOR bootcd regtest livecd)
825
826 endfunction()
827
828 if(KDBG)
829 set(ROSSYM_LIB "rossym")
830 else()
831 set(ROSSYM_LIB "")
832 endif()
833
834 function(add_rc_deps _target_rc)
835 set_source_files_properties(${_target_rc} PROPERTIES OBJECT_DEPENDS "${ARGN}")
836 endfunction()
837
838 add_custom_target(rostests_install COMMAND ${CMAKE_COMMAND} -DCOMPONENT=rostests -P ${CMAKE_BINARY_DIR}/cmake_install.cmake)
839 function(add_rostests_file)
840 cmake_parse_arguments(_ROSTESTS "" "RENAME;SUBDIR;TARGET" "FILE" ${ARGN})
841 if(NOT (_ROSTESTS_TARGET OR _ROSTESTS_FILE))
842 message(FATAL_ERROR "You must provide a target or a file to install!")
843 endif()
844
845 if(NOT _ROSTESTS_FILE)
846 get_target_property(_ROSTESTS_FILE ${_ROSTESTS_TARGET} LOCATION_${CMAKE_BUILD_TYPE})
847 endif()
848
849 if(NOT _ROSTESTS_RENAME)
850 get_filename_component(_ROSTESTS_RENAME ${_ROSTESTS_FILE} NAME)
851 endif()
852
853 if(_ROSTESTS_SUBDIR)
854 set(_ROSTESTS_SUBDIR "/${_ROSTESTS_SUBDIR}")
855 endif()
856
857 if(_ROSTESTS_TARGET)
858 add_cd_file(TARGET ${_ROSTESTS_TARGET} FILE ${_ROSTESTS_FILE} DESTINATION "reactos/bin${_ROSTESTS_SUBDIR}" NAME_ON_CD ${_ROSTESTS_RENAME} FOR all)
859 else()
860 add_cd_file(FILE ${_ROSTESTS_FILE} DESTINATION "reactos/bin${_ROSTESTS_SUBDIR}" NAME_ON_CD ${_ROSTESTS_RENAME} FOR all)
861 endif()
862
863 if(DEFINED ENV{ROSTESTS_INSTALL})
864 install(FILES ${_ROSTESTS_FILE} DESTINATION "$ENV{ROSTESTS_INSTALL}${_ROSTESTS_SUBDIR}" COMPONENT rostests RENAME ${_ROSTESTS_RENAME})
865 endif()
866 endfunction()