[CMAKE]
[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 endif()
76 endif()
77
78 set(IS_CPP 1)
79 endmacro()
80
81 function(add_dependency_node _node)
82 if(GENERATE_DEPENDENCY_GRAPH)
83 get_target_property(_type ${_node} TYPE)
84 if(_type MATCHES SHARED_LIBRARY OR ${_node} MATCHES ntoskrnl)
85 file(APPEND ${REACTOS_BINARY_DIR}/dependencies.graphml " <node id=\"${_node}\"/>\n")
86 endif()
87 endif()
88 endfunction()
89
90 function(add_dependency_edge _source _target)
91 if(GENERATE_DEPENDENCY_GRAPH)
92 get_target_property(_type ${_source} TYPE)
93 if(_type MATCHES SHARED_LIBRARY)
94 file(APPEND ${REACTOS_BINARY_DIR}/dependencies.graphml " <edge source=\"${_source}\" target=\"${_target}\"/>\n")
95 endif()
96 endif()
97 endfunction()
98
99 function(add_dependency_header)
100 file(APPEND ${REACTOS_BINARY_DIR}/dependencies.graphml "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<graphml>\n <graph id=\"ReactOS dependencies\" edgedefault=\"directed\">\n")
101 endfunction()
102
103 function(add_dependency_footer)
104 add_dependency_node(ntdll)
105 file(APPEND ${REACTOS_BINARY_DIR}/dependencies.graphml " </graph>\n</graphml>\n")
106 endfunction()
107
108 function(add_message_headers _type)
109 if(${_type} STREQUAL UNICODE)
110 set(_flag "-U")
111 else()
112 set(_flag "-A")
113 endif()
114 foreach(_in_FILE ${ARGN})
115 get_filename_component(FILE ${_in_FILE} NAME_WE)
116 macro_mc(${_flag} ${FILE})
117 add_custom_command(
118 OUTPUT ${REACTOS_BINARY_DIR}/include/reactos/${FILE}.rc ${REACTOS_BINARY_DIR}/include/reactos/${FILE}.h
119 COMMAND ${COMMAND_MC} ${MC_FLAGS}
120 DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${FILE}.mc)
121 set_source_files_properties(
122 ${REACTOS_BINARY_DIR}/include/reactos/${FILE}.h ${REACTOS_BINARY_DIR}/include/reactos/${FILE}.rc
123 PROPERTIES GENERATED TRUE)
124 add_custom_target(${FILE} ALL DEPENDS ${REACTOS_BINARY_DIR}/include/reactos/${FILE}.h ${REACTOS_BINARY_DIR}/include/reactos/${FILE}.rc)
125 endforeach()
126 endfunction()
127
128 function(add_link)
129 cmake_parse_arguments(_LINK "MINIMIZE" "NAME;PATH;CMD_LINE_ARGS;ICON;GUID" "" ${ARGN})
130 if(NOT _LINK_NAME OR NOT _LINK_PATH)
131 message(FATAL_ERROR "You must provide name and path")
132 endif()
133
134 if(_LINK_CMD_LINE_ARGS)
135 set(_LINK_CMD_LINE_ARGS -c ${_LINK_CMD_LINE_ARGS})
136 endif()
137
138 if(_LINK_ICON)
139 set(_LINK_ICON -i ${_LINK_ICON})
140 endif()
141
142 if(_LINK_GUID)
143 set(_LINK_GUID -g ${_LINK_GUID})
144 endif()
145
146 if(_LINK_MINIMIZE)
147 set(_LINK_MINIMIZE "-m")
148 endif()
149
150 add_custom_command(
151 OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${_LINK_NAME}.lnk
152 COMMAND native-mkshelllink -o ${CMAKE_CURRENT_BINARY_DIR}/${_LINK_NAME}.lnk ${_LINK_CMD_LINE_ARGS} ${_LINK_ICON} ${_LINK_GUID} ${_LINK_MINIMIZE} ${_LINK_PATH}
153 DEPENDS native-mkshelllink)
154 set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/${_LINK_NAME}.lnk PROPERTIES GENERATED TRUE)
155 endfunction()
156
157 macro(dir_to_num dir var)
158 if(${dir} STREQUAL reactos/system32)
159 set(${var} 1)
160 elseif(${dir} STREQUAL reactos/system32/drivers)
161 set(${var} 2)
162 elseif(${dir} STREQUAL reactos/Fonts)
163 set(${var} 3)
164 elseif(${dir} STREQUAL reactos)
165 set(${var} 4)
166 elseif(${dir} STREQUAL reactos/system32/drivers/etc)
167 set(${var} 5)
168 elseif(${dir} STREQUAL reactos/inf)
169 set(${var} 6)
170 elseif(${dir} STREQUAL reactos/bin)
171 set(${var} 7)
172 elseif(${dir} STREQUAL reactos/bin/data)
173 set(${var} 8)
174 elseif(${dir} STREQUAL reactos/media)
175 set(${var} 9)
176 elseif(${dir} STREQUAL reactos/Microsoft.NET)
177 set(${var} 10)
178 elseif(${dir} STREQUAL reactos/Microsoft.NET/Framework)
179 set(${var} 11)
180 elseif(${dir} STREQUAL reactos/Microsoft.NET/Framework/v1.0.3705)
181 set(${var} 12)
182 elseif(${dir} STREQUAL reactos/Microsoft.NET/Framework/v1.1.4322)
183 set(${var} 13)
184 elseif(${dir} STREQUAL reactos/Microsoft.NET/Framework/v2.0.50727)
185 set(${var} 14)
186 elseif(${dir} STREQUAL reactos/Resources)
187 set(${var} 15)
188 elseif(${dir} STREQUAL reactos/Resources/Themes)
189 set(${var} 16)
190 elseif(${dir} STREQUAL reactos/system32/wbem)
191 set(${var} 17)
192 elseif(${dir} STREQUAL reactos/Resources/Themes/Lautus)
193 set(${var} 18)
194 elseif(${dir} STREQUAL reactos/Help)
195 set(${var} 19)
196 elseif(${dir} STREQUAL reactos/Config)
197 set(${var} 20)
198 elseif(${dir} STREQUAL reactos/Cursors)
199 set(${var} 21)
200 elseif(${dir} STREQUAL reactos/system32/ShellExt)
201 set(${var} 22)
202 elseif(${dir} STREQUAL reactos/Temp)
203 set(${var} 23)
204 elseif(${dir} STREQUAL reactos/system32/spool)
205 set(${var} 24)
206 elseif(${dir} STREQUAL reactos/system32/spool/drivers)
207 set(${var} 25)
208 elseif(${dir} STREQUAL reactos/system32/spool/drivers/color)
209 set(${var} 26)
210 elseif(${dir} STREQUAL reactos/system32/spool/drivers/w32x86)
211 set(${var} 27)
212 elseif(${dir} STREQUAL reactos/system32/spool/drivers/w32x86/3)
213 set(${var} 28)
214 elseif(${dir} STREQUAL reactos/system32/spool/prtprocs)
215 set(${var} 29)
216 elseif(${dir} STREQUAL reactos/system32/spool/prtprocs/w32x86)
217 set(${var} 30)
218 elseif(${dir} STREQUAL reactos/system32/spool/PRINTERS)
219 set(${var} 31)
220 elseif(${dir} STREQUAL reactos/system32/wbem/Repository)
221 set(${var} 32)
222 elseif(${dir} STREQUAL reactos/system32/wbem/Repository/FS)
223 set(${var} 33)
224 elseif(${dir} STREQUAL reactos/system32/wbem/mof/good)
225 set(${var} 34)
226 elseif(${dir} STREQUAL reactos/system32/wbem/mof/bad)
227 set(${var} 35)
228 elseif(${dir} STREQUAL reactos/system32/wbem/AdStatus)
229 set(${var} 36)
230 elseif(${dir} STREQUAL reactos/system32/wbem/xml)
231 set(${var} 37)
232 elseif(${dir} STREQUAL reactos/system32/wbem/Logs)
233 set(${var} 38)
234 elseif(${dir} STREQUAL reactos/system32/wbem/AutoRecover)
235 set(${var} 39)
236 elseif(${dir} STREQUAL reactos/system32/wbem/snmp)
237 set(${var} 40)
238 elseif(${dir} STREQUAL reactos/system32/wbem/Performance)
239 set(${var} 41)
240 elseif(${dir} STREQUAL reactos/twain_32)
241 set(${var} 42)
242 elseif(${dir} STREQUAL reactos/repair)
243 set(${var} 43)
244 elseif(${dir} STREQUAL reactos/Web)
245 set(${var} 44)
246 elseif(${dir} STREQUAL reactos/Web/Wallpaper)
247 set(${var} 45)
248 elseif(${dir} STREQUAL reactos/Prefetch)
249 set(${var} 46)
250 elseif(${dir} STREQUAL reactos/security)
251 set(${var} 47)
252 elseif(${dir} STREQUAL reactos/security/Database)
253 set(${var} 48)
254 elseif(${dir} STREQUAL reactos/security/logs)
255 set(${var} 49)
256 elseif(${dir} STREQUAL reactos/security/templates)
257 set(${var} 50)
258 elseif(${dir} STREQUAL reactos/system32/CatRoot)
259 set(${var} 51)
260 elseif(${dir} STREQUAL reactos/system32/CatRoot2)
261 set(${var} 52)
262 else()
263 message(FATAL_ERROR "Wrong destination: ${dir}")
264 endif()
265 endmacro()
266
267 function(add_cd_file)
268 cmake_parse_arguments(_CD "NO_CAB;NOT_IN_HYBRIDCD" "DESTINATION;NAME_ON_CD;TARGET" "FILE;FOR" ${ARGN})
269 if(NOT (_CD_TARGET OR _CD_FILE))
270 message(FATAL_ERROR "You must provide a target or a file to install!")
271 endif()
272
273 if(NOT _CD_DESTINATION)
274 message(FATAL_ERROR "You must provide a destination")
275 elseif(${_CD_DESTINATION} STREQUAL root)
276 set(_CD_DESTINATION "")
277 endif()
278
279 if(NOT _CD_FOR)
280 message(FATAL_ERROR "You must provide a cd name (or \"all\" for all of them) to install the file on!")
281 endif()
282
283 #get file if we need to
284 if(NOT _CD_FILE)
285 get_target_property(_CD_FILE ${_CD_TARGET} LOCATION_${CMAKE_BUILD_TYPE})
286 endif()
287
288 #do we add it to all CDs?
289 list(FIND _CD_FOR all __cd)
290 if(NOT __cd EQUAL -1)
291 list(REMOVE_AT _CD_FOR __cd)
292 list(INSERT _CD_FOR __cd "bootcd;livecd;regtest")
293 endif()
294
295 #do we add it to bootcd?
296 list(FIND _CD_FOR bootcd __cd)
297 if(NOT __cd EQUAL -1)
298 #whether or not we should put it in reactos.cab or directly on cd
299 if(_CD_NO_CAB)
300 #directly on cd
301 foreach(item ${_CD_FILE})
302 if(_CD_NAME_ON_CD)
303 #rename it in the cd tree
304 set(__file ${_CD_NAME_ON_CD})
305 else()
306 get_filename_component(__file ${item} NAME)
307 endif()
308 set_property(GLOBAL APPEND PROPERTY BOOTCD_FILE_LIST "${_CD_DESTINATION}/${__file}=${item}")
309 #add it also into the hybridcd if not specified otherwise
310 if(NOT _CD_NOT_IN_HYBRIDCD)
311 set_property(GLOBAL APPEND PROPERTY HYBRIDCD_FILE_LIST "bootcd/${_CD_DESTINATION}/${__file}=${item}")
312 endif()
313 endforeach()
314 if(_CD_TARGET)
315 #manage dependency
316 add_dependencies(bootcd ${_CD_TARGET} converted_hives)
317 endif()
318 else()
319 #add it in reactos.cab
320 dir_to_num(${_CD_DESTINATION} _num)
321 file(RELATIVE_PATH __relative_file ${REACTOS_SOURCE_DIR} ${_CD_FILE})
322 file(APPEND ${REACTOS_BINARY_DIR}/boot/bootdata/packages/reactos.dff.dyn "\"${__relative_file}\" ${_num}\n")
323 unset(__relative_file)
324 if(_CD_TARGET)
325 #manage dependency - target level
326 add_dependencies(reactos_cab_inf ${_CD_TARGET})
327 endif()
328 # manage dependency - file level
329 set_property(GLOBAL APPEND PROPERTY REACTOS_CAB_DEPENDS ${_CD_FILE})
330 endif()
331 endif() #end bootcd
332
333 #do we add it to livecd?
334 list(FIND _CD_FOR livecd __cd)
335 if(NOT __cd EQUAL -1)
336 #manage dependency
337 if(_CD_TARGET)
338 add_dependencies(livecd ${_CD_TARGET} converted_hives)
339 endif()
340 foreach(item ${_CD_FILE})
341 if(_CD_NAME_ON_CD)
342 #rename it in the cd tree
343 set(__file ${_CD_NAME_ON_CD})
344 else()
345 get_filename_component(__file ${item} NAME)
346 endif()
347 set_property(GLOBAL APPEND PROPERTY LIVECD_FILE_LIST "${_CD_DESTINATION}/${__file}=${item}")
348 #add it also into the hybridcd if not specified otherwise
349 if(NOT _CD_NOT_IN_HYBRIDCD)
350 set_property(GLOBAL APPEND PROPERTY HYBRIDCD_FILE_LIST "livecd/${_CD_DESTINATION}/${__file}=${item}")
351 endif()
352 endforeach()
353 endif() #end livecd
354
355 #do we need also to add it to hybridcd?
356 list(FIND _CD_FOR hybridcd __cd)
357 if(NOT __cd EQUAL -1)
358 foreach(item ${_CD_FILE})
359 if(_CD_NAME_ON_CD)
360 #rename it in the cd tree
361 set(__file ${_CD_NAME_ON_CD})
362 else()
363 get_filename_component(__file ${item} NAME)
364 endif()
365 set_property(GLOBAL APPEND PROPERTY HYBRIDCD_FILE_LIST "${_CD_DESTINATION}/${__file}=${item}")
366 endforeach()
367 endif() #end hybridcd
368
369 #do we add it to regtest?
370 list(FIND _CD_FOR regtest __cd)
371 if(NOT __cd EQUAL -1)
372 #whether or not we should put it in reactos.cab or directly on cd
373 if(_CD_NO_CAB)
374 #directly on cd
375 foreach(item ${_CD_FILE})
376 if(_CD_NAME_ON_CD)
377 #rename it in the cd tree
378 set(__file ${_CD_NAME_ON_CD})
379 else()
380 get_filename_component(__file ${item} NAME)
381 endif()
382 set_property(GLOBAL APPEND PROPERTY BOOTCDREGTEST_FILE_LIST "${_CD_DESTINATION}/${__file}=${item}")
383 endforeach()
384 if(_CD_TARGET)
385 #manage dependency
386 add_dependencies(bootcdregtest ${_CD_TARGET} converted_hives)
387 endif()
388 else()
389 #add it in reactos.cab
390 #dir_to_num(${_CD_DESTINATION} _num)
391 #file(APPEND ${REACTOS_BINARY_DIR}/boot/bootdata/packages/reactos.dff.dyn "${_CD_FILE} ${_num}\n")
392 #if(_CD_TARGET)
393 # #manage dependency
394 # add_dependencies(reactos_cab ${_CD_TARGET})
395 #endif()
396 endif()
397 endif() #end bootcd
398 endfunction()
399
400 function(create_iso_lists)
401 # generate reactos.cab before anything else
402 get_property(_filelist GLOBAL PROPERTY REACTOS_CAB_DEPENDS)
403
404 # begin with reactos.inf. We want this command to be always executed, so we pretend it generates another file although it will never do.
405 add_custom_command(
406 OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/reactos.inf ${CMAKE_CURRENT_BINARY_DIR}/__some_non_existent_file
407 COMMAND ${CMAKE_COMMAND} -E copy_if_different ${REACTOS_BINARY_DIR}/boot/bootdata/packages/reactos.inf ${CMAKE_CURRENT_BINARY_DIR}/reactos.inf
408 DEPENDS ${REACTOS_BINARY_DIR}/boot/bootdata/packages/reactos.inf reactos_cab_inf)
409
410 add_custom_command(
411 OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/reactos.cab
412 COMMAND native-cabman -C ${REACTOS_BINARY_DIR}/boot/bootdata/packages/reactos.dff -RC ${CMAKE_CURRENT_BINARY_DIR}/reactos.inf -N -P ${REACTOS_SOURCE_DIR}
413 DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/reactos.inf native-cabman ${_filelist})
414
415 add_custom_target(reactos_cab DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/reactos.cab)
416 add_dependencies(reactos_cab reactos_cab_inf)
417
418 add_cd_file(
419 TARGET reactos_cab
420 FILE ${CMAKE_CURRENT_BINARY_DIR}/reactos.cab
421 DESTINATION reactos
422 NO_CAB FOR bootcd regtest)
423
424 add_cd_file(
425 FILE ${CMAKE_CURRENT_BINARY_DIR}/livecd.iso
426 DESTINATION livecd
427 FOR hybridcd)
428
429 get_property(_filelist GLOBAL PROPERTY BOOTCD_FILE_LIST)
430 string(REPLACE ";" "\n" _filelist "${_filelist}")
431 file(APPEND ${REACTOS_BINARY_DIR}/boot/bootcd.lst "${_filelist}")
432 unset(_filelist)
433
434 get_property(_filelist GLOBAL PROPERTY LIVECD_FILE_LIST)
435 string(REPLACE ";" "\n" _filelist "${_filelist}")
436 file(APPEND ${REACTOS_BINARY_DIR}/boot/livecd.lst "${_filelist}")
437 unset(_filelist)
438
439 get_property(_filelist GLOBAL PROPERTY HYBRIDCD_FILE_LIST)
440 string(REPLACE ";" "\n" _filelist "${_filelist}")
441 file(APPEND ${REACTOS_BINARY_DIR}/boot/hybridcd.lst "${_filelist}")
442 unset(_filelist)
443
444 get_property(_filelist GLOBAL PROPERTY BOOTCDREGTEST_FILE_LIST)
445 string(REPLACE ";" "\n" _filelist "${_filelist}")
446 file(APPEND ${REACTOS_BINARY_DIR}/boot/bootcdregtest.lst "${_filelist}")
447 unset(_filelist)
448 endfunction()
449
450 # Create module_clean targets
451 function(add_clean_target _target)
452 set(_clean_working_directory ${CMAKE_CURRENT_BINARY_DIR})
453 if(CMAKE_GENERATOR STREQUAL "Unix Makefiles" OR CMAKE_GENERATOR STREQUAL "MinGW Makefiles")
454 set(_clean_command make clean)
455 elseif(CMAKE_GENERATOR STREQUAL "NMake Makefiles")
456 set(_clean_command nmake /nologo clean)
457 elseif(CMAKE_GENERATOR STREQUAL "Ninja")
458 set(_clean_command ninja -t clean ${_target})
459 set(_clean_working_directory ${REACTOS_BINARY_DIR})
460 endif()
461 add_custom_target(${_target}_clean
462 COMMAND ${_clean_command}
463 WORKING_DIRECTORY ${_clean_working_directory}
464 COMMENT "Cleaning ${_target}")
465 endfunction()
466
467 if(NOT MSVC_IDE)
468 function(add_library name)
469 _add_library(${name} ${ARGN})
470 add_clean_target(${name})
471 endfunction()
472
473 function(add_executable name)
474 _add_executable(${name} ${ARGN})
475 add_clean_target(${name})
476 endfunction()
477 elseif(USE_FOLDER_STRUCTURE)
478 set_property(GLOBAL PROPERTY USE_FOLDERS ON)
479 string(LENGTH ${CMAKE_SOURCE_DIR} CMAKE_SOURCE_DIR_LENGTH)
480
481 function(add_custom_target name)
482 _add_custom_target(${name} ${ARGN})
483 string(SUBSTRING ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR_LENGTH} -1 CMAKE_CURRENT_SOURCE_DIR_RELATIVE)
484 set_property(TARGET "${name}" PROPERTY FOLDER "${CMAKE_CURRENT_SOURCE_DIR_RELATIVE}")
485 endfunction()
486
487 function(add_library name)
488 _add_library(${name} ${ARGN})
489 get_target_property(_target_excluded ${name} EXCLUDE_FROM_ALL)
490 if(_target_excluded AND ${name} MATCHES "^lib.*")
491 set_property(TARGET "${name}" PROPERTY FOLDER "Importlibs")
492 else()
493 string(SUBSTRING ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR_LENGTH} -1 CMAKE_CURRENT_SOURCE_DIR_RELATIVE)
494 set_property(TARGET "${name}" PROPERTY FOLDER "${CMAKE_CURRENT_SOURCE_DIR_RELATIVE}")
495 endif()
496 endfunction()
497
498 function(add_executable name)
499 _add_executable(${name} ${ARGN})
500 string(SUBSTRING ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR_LENGTH} -1 CMAKE_CURRENT_SOURCE_DIR_RELATIVE)
501 set_property(TARGET "${name}" PROPERTY FOLDER "${CMAKE_CURRENT_SOURCE_DIR_RELATIVE}")
502 endfunction()
503 endif()
504
505 if(CMAKE_HOST_SYSTEM_NAME STREQUAL "Windows")
506 macro(to_win_path _cmake_path _native_path)
507 string(REPLACE "/" "\\" ${_native_path} "${_cmake_path}")
508 endmacro()
509
510 # yeah the parameter mess sucks, but thats what works...
511 function(concatenate_files _file1 _target2 _output)
512 get_target_property(_file2 ${_target2} LOCATION)
513 to_win_path("${_file1}" _real_file1)
514 to_win_path("${_file2}" _real_file2)
515 to_win_path("${_output}" _real_output)
516 add_custom_command(
517 OUTPUT ${_output}
518 COMMAND cmd.exe /C "copy /Y /B ${_real_file1} + ${_real_file2} ${_real_output} > nul"
519 DEPENDS ${_file1}
520 DEPENDS ${_target2})
521 endfunction()
522 else()
523 macro(concatenate_files _file1 _target2 _output)
524 get_target_property(_file2 ${_target2} LOCATION)
525 add_custom_command(
526 OUTPUT ${_output}
527 COMMAND cat ${_file1} ${_file2} > ${_output}
528 DEPENDS ${_file1}
529 DEPENDS ${_target2})
530 endmacro()
531 endif()
532
533 function(add_importlibs _module)
534 add_dependency_node(${_module})
535 foreach(LIB ${ARGN})
536 if("${LIB}" MATCHES "msvcrt")
537 add_target_compile_definitions(${_module} _DLL __USE_CRTIMP)
538 target_link_libraries(${_module} msvcrtex)
539 endif()
540 target_link_libraries(${_module} lib${LIB})
541 add_dependencies(${_module} lib${LIB})
542 add_dependency_edge(${_module} ${LIB})
543 endforeach()
544 endfunction()
545
546 function(set_module_type MODULE TYPE)
547 cmake_parse_arguments(__module "UNICODE;HOTPATCHABLE" "IMAGEBASE" "ENTRYPOINT" ${ARGN})
548
549 if(__module_UNPARSED_ARGUMENTS)
550 message(STATUS "set_module_type : unparsed arguments ${__module_UNPARSED_ARGUMENTS}, module : ${MODULE}")
551 endif()
552
553 # Add the module to the module group list, if it is defined
554 if(DEFINED CURRENT_MODULE_GROUP)
555 set_property(GLOBAL APPEND PROPERTY ${CURRENT_MODULE_GROUP}_MODULE_LIST "${MODULE}")
556 endif()
557
558 # Set subsystem. Also take this as an occasion
559 # to error out if someone gave a non existing type
560 if((${TYPE} STREQUAL nativecui) OR (${TYPE} STREQUAL nativedll)
561 OR (${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver) OR (${TYPE} STREQUAL kerneldll))
562 set(__subsystem native)
563 elseif(${TYPE} STREQUAL win32cui)
564 set(__subsystem console)
565 elseif(${TYPE} STREQUAL win32gui)
566 set(__subsystem windows)
567 elseif(NOT ((${TYPE} STREQUAL win32dll) OR (${TYPE} STREQUAL win32ocx)
568 OR (${TYPE} STREQUAL cpl) OR (${TYPE} STREQUAL module)))
569 message(FATAL_ERROR "Unknown type ${TYPE} for module ${MODULE}")
570 endif()
571
572 if(DEFINED __subsystem)
573 set_subsystem(${MODULE} ${__subsystem})
574 endif()
575
576 #set unicode definitions
577 if(__module_UNICODE)
578 add_target_compile_definitions(${MODULE} UNICODE _UNICODE)
579 endif()
580
581 # Handle hotpatchable images.
582 # GCC has this as a function attribute so we're handling it using DECLSPEC_HOTPATCH
583 if(__module_HOTPATCHABLE AND MSVC AND (NOT ARCH STREQUAL "arm"))
584 set_property(TARGET ${MODULE} APPEND_STRING PROPERTY COMPILE_FLAGS " /hotpatch")
585 if(ARCH STREQUAL "i386")
586 set_property(TARGET ${MODULE} APPEND_STRING PROPERTY LINK_FLAGS " /FUNCTIONPADMIN:5")
587 elseif(ARCH STREQUAL "amd64")
588 set_property(TARGET ${MODULE} APPEND_STRING PROPERTY LINK_FLAGS " /FUNCTIONPADMIN:6")
589 endif()
590 endif()
591
592 # set entry point
593 if(__module_ENTRYPOINT OR (__module_ENTRYPOINT STREQUAL "0"))
594 list(GET __module_ENTRYPOINT 0 __entrypoint)
595 list(LENGTH __module_ENTRYPOINT __length)
596 if(${__length} EQUAL 2)
597 list(GET __module_ENTRYPOINT 1 __entrystack)
598 elseif(NOT ${__length} EQUAL 1)
599 message(FATAL_ERROR "Wrong arguments for ENTRYPOINT parameter of set_module_type : ${__module_ENTRYPOINT}")
600 endif()
601 unset(__length)
602 elseif(${TYPE} STREQUAL nativecui)
603 set(__entrypoint NtProcessStartup)
604 set(__entrystack 4)
605 elseif(${TYPE} STREQUAL win32cui)
606 if(__module_UNICODE)
607 set(__entrypoint wmainCRTStartup)
608 else()
609 set(__entrypoint mainCRTStartup)
610 endif()
611 elseif(${TYPE} STREQUAL win32gui)
612 if(__module_UNICODE)
613 set(__entrypoint wWinMainCRTStartup)
614 else()
615 set(__entrypoint WinMainCRTStartup)
616 endif()
617 elseif((${TYPE} STREQUAL win32dll) OR (${TYPE} STREQUAL win32ocx)
618 OR (${TYPE} STREQUAL cpl))
619 set(__entrypoint DllMainCRTStartup)
620 set(__entrystack 12)
621 elseif((${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver))
622 set(__entrypoint DriverEntry)
623 set(__entrystack 8)
624 elseif(${TYPE} STREQUAL nativedll)
625 set(__entrypoint DllMain)
626 set(__entrystack 12)
627 elseif(${TYPE} STREQUAL module)
628 set(__entrypoint 0)
629 endif()
630
631 if(DEFINED __entrypoint)
632 if(DEFINED __entrystack)
633 set_entrypoint(${MODULE} ${__entrypoint} ${__entrystack})
634 else()
635 set_entrypoint(${MODULE} ${__entrypoint})
636 endif()
637 endif()
638
639 #set base address
640 if(__module_IMAGEBASE)
641 set_image_base(${MODULE} ${__module_IMAGEBASE})
642 elseif(${TYPE} STREQUAL win32dll)
643 if(DEFINED baseaddress_${MODULE})
644 set_image_base(${MODULE} ${baseaddress_${MODULE}})
645 else()
646 message(STATUS "${MODULE} has no base address")
647 endif()
648 elseif((${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver) OR (${TYPE} STREQUAL kerneldll))
649 set_image_base(${MODULE} 0x00010000)
650 endif()
651
652 # Now do some stuff which is specific to each type
653 if((${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver) OR (${TYPE} STREQUAL kerneldll))
654 add_dependencies(${MODULE} bugcodes)
655 if((${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver))
656 set_target_properties(${MODULE} PROPERTIES SUFFIX ".sys")
657 endif()
658 endif()
659
660 if(${TYPE} STREQUAL win32ocx)
661 set_target_properties(${MODULE} PROPERTIES SUFFIX ".ocx")
662 endif()
663
664 if(${TYPE} STREQUAL cpl)
665 set_target_properties(${MODULE} PROPERTIES SUFFIX ".cpl")
666 endif()
667
668 # do compiler specific stuff
669 set_module_type_toolchain(${MODULE} ${TYPE})
670 endfunction()
671
672 function(start_module_group __name)
673 if(DEFINED CURRENT_MODULE_GROUP)
674 message(FATAL_ERROR "CURRENT_MODULE_GROUP is already set ('${CURRENT_MODULE_GROUP}')")
675 endif()
676 set(CURRENT_MODULE_GROUP ${__name} PARENT_SCOPE)
677 endfunction()
678
679 function(end_module_group)
680 get_property(__modulelist GLOBAL PROPERTY ${CURRENT_MODULE_GROUP}_MODULE_LIST)
681 add_custom_target(${CURRENT_MODULE_GROUP})
682 foreach(__module ${__modulelist})
683 add_dependencies(${CURRENT_MODULE_GROUP} ${__module})
684 endforeach()
685 unset(CURRENT_MODULE_GROUP PARENT_SCOPE)
686 endfunction()
687
688 function(preprocess_file __in __out)
689 set(__arg ${__in})
690 foreach(__def in ${ARGN})
691 list(APPEND __arg -D${__def})
692 endforeach()
693 if(MSVC)
694 add_custom_command(OUTPUT ${_out}
695 COMMAND ${CMAKE_C_COMPILER} /EP ${__arg}
696 DEPENDS ${__in})
697 else()
698 add_custom_command(OUTPUT ${_out}
699 COMMAND ${CMAKE_C_COMPILER} -E ${__arg}
700 DEPENDS ${__in})
701 endif()
702 endfunction()
703
704 function(get_includes OUTPUT_VAR)
705 get_directory_property(_includes INCLUDE_DIRECTORIES)
706 foreach(arg ${_includes})
707 list(APPEND __tmp_var -I${arg})
708 endforeach()
709 set(${OUTPUT_VAR} ${__tmp_var} PARENT_SCOPE)
710 endfunction()
711
712 function(get_defines OUTPUT_VAR)
713 get_directory_property(_defines COMPILE_DEFINITIONS)
714 foreach(arg ${_defines})
715 list(APPEND __tmp_var -D${arg})
716 endforeach()
717 set(${OUTPUT_VAR} ${__tmp_var} PARENT_SCOPE)
718 endfunction()
719
720 if(NOT MSVC)
721 function(add_object_library _target)
722 add_library(${_target} OBJECT ${ARGN})
723 endfunction()
724 else()
725 function(add_object_library _target)
726 add_library(${_target} ${ARGN})
727 endfunction()
728 endif()
729
730 if(KDBG)
731 set(ROSSYM_LIB "rossym")
732 else()
733 set(ROSSYM_LIB "")
734 endif()