3 # Marks the current folder as containing C++ modules, additionally enabling
4 # specific C++ language features as specified (all of these default to off):
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.
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.
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
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.
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.
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}")
53 if(__cppopts_WITH_RUNTIME)
56 if(__cppopts_WITH_RTTI)
58 replace_compile_flags("/GR-" "/GR")
60 replace_compile_flags_language("-fno-rtti" "-frtti" "CXX")
63 if(__cppopts_WITH_EXCEPTIONS)
65 replace_compile_flags("/EHs-c-" "/EHsc")
67 replace_compile_flags_language("-fno-exceptions" "-fexceptions" "CXX")
70 if(__cppopts_WITH_STL)
73 add_definitions(-DNATIVE_CPP_INCLUDE=${REACTOS_SOURCE_DIR}/include/c++)
74 include_directories(${REACTOS_SOURCE_DIR}/include/c++/stlport)
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")
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")
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")
103 function(add_dependency_footer)
104 add_dependency_node(ntdll)
105 file(APPEND ${REACTOS_BINARY_DIR}/dependencies.graphml " </graph>\n</graphml>\n")
108 function(add_message_headers _type)
109 if(${_type} STREQUAL UNICODE)
114 foreach(_in_FILE ${ARGN})
115 get_filename_component(FILE ${_in_FILE} NAME_WE)
116 macro_mc(${_flag} ${FILE})
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)
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")
134 if(_LINK_CMD_LINE_ARGS)
135 set(_LINK_CMD_LINE_ARGS -c ${_LINK_CMD_LINE_ARGS})
139 set(_LINK_ICON -i ${_LINK_ICON})
143 set(_LINK_GUID -g ${_LINK_GUID})
147 set(_LINK_MINIMIZE "-m")
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)
157 macro(dir_to_num dir var)
158 if(${dir} STREQUAL reactos/system32)
160 elseif(${dir} STREQUAL reactos/system32/drivers)
162 elseif(${dir} STREQUAL reactos/Fonts)
164 elseif(${dir} STREQUAL reactos)
166 elseif(${dir} STREQUAL reactos/system32/drivers/etc)
168 elseif(${dir} STREQUAL reactos/inf)
170 elseif(${dir} STREQUAL reactos/bin)
172 elseif(${dir} STREQUAL reactos/bin/data)
174 elseif(${dir} STREQUAL reactos/media)
176 elseif(${dir} STREQUAL reactos/Microsoft.NET)
178 elseif(${dir} STREQUAL reactos/Microsoft.NET/Framework)
180 elseif(${dir} STREQUAL reactos/Microsoft.NET/Framework/v1.0.3705)
182 elseif(${dir} STREQUAL reactos/Microsoft.NET/Framework/v1.1.4322)
184 elseif(${dir} STREQUAL reactos/Microsoft.NET/Framework/v2.0.50727)
186 elseif(${dir} STREQUAL reactos/Resources)
188 elseif(${dir} STREQUAL reactos/Resources/Themes)
190 elseif(${dir} STREQUAL reactos/system32/wbem)
192 elseif(${dir} STREQUAL reactos/Resources/Themes/Lautus)
194 elseif(${dir} STREQUAL reactos/Help)
196 elseif(${dir} STREQUAL reactos/Config)
198 elseif(${dir} STREQUAL reactos/Cursors)
200 elseif(${dir} STREQUAL reactos/system32/ShellExt)
202 elseif(${dir} STREQUAL reactos/Temp)
204 elseif(${dir} STREQUAL reactos/system32/spool)
206 elseif(${dir} STREQUAL reactos/system32/spool/drivers)
208 elseif(${dir} STREQUAL reactos/system32/spool/drivers/color)
210 elseif(${dir} STREQUAL reactos/system32/spool/drivers/w32x86)
212 elseif(${dir} STREQUAL reactos/system32/spool/drivers/w32x86/3)
214 elseif(${dir} STREQUAL reactos/system32/spool/prtprocs)
216 elseif(${dir} STREQUAL reactos/system32/spool/prtprocs/w32x86)
218 elseif(${dir} STREQUAL reactos/system32/spool/PRINTERS)
220 elseif(${dir} STREQUAL reactos/system32/wbem/Repository)
222 elseif(${dir} STREQUAL reactos/system32/wbem/Repository/FS)
224 elseif(${dir} STREQUAL reactos/system32/wbem/mof/good)
226 elseif(${dir} STREQUAL reactos/system32/wbem/mof/bad)
228 elseif(${dir} STREQUAL reactos/system32/wbem/AdStatus)
230 elseif(${dir} STREQUAL reactos/system32/wbem/xml)
232 elseif(${dir} STREQUAL reactos/system32/wbem/Logs)
234 elseif(${dir} STREQUAL reactos/system32/wbem/AutoRecover)
236 elseif(${dir} STREQUAL reactos/system32/wbem/snmp)
238 elseif(${dir} STREQUAL reactos/system32/wbem/Performance)
240 elseif(${dir} STREQUAL reactos/twain_32)
242 elseif(${dir} STREQUAL reactos/repair)
244 elseif(${dir} STREQUAL reactos/Web)
246 elseif(${dir} STREQUAL reactos/Web/Wallpaper)
248 elseif(${dir} STREQUAL reactos/Prefetch)
250 elseif(${dir} STREQUAL reactos/security)
252 elseif(${dir} STREQUAL reactos/security/Database)
254 elseif(${dir} STREQUAL reactos/security/logs)
256 elseif(${dir} STREQUAL reactos/security/templates)
258 elseif(${dir} STREQUAL reactos/system32/CatRoot)
260 elseif(${dir} STREQUAL reactos/system32/CatRoot2)
263 message(FATAL_ERROR "Wrong destination: ${dir}")
267 function(add_cd_file)
268 cmake_parse_arguments(_CD "NO_CAB" "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!")
273 if(NOT _CD_DESTINATION)
274 message(FATAL_ERROR "You must provide a destination")
275 elseif(${_CD_DESTINATION} STREQUAL root)
276 set(_CD_DESTINATION "")
280 message(FATAL_ERROR "You must provide a cd name (or \"all\" for all of them) to install the file on!")
283 #get file if we need to
285 get_target_property(_CD_FILE ${_CD_TARGET} LOCATION_${CMAKE_BUILD_TYPE})
288 #do we add it to all CDs?
289 if(_CD_FOR STREQUAL all)
290 set(_CD_FOR "bootcd;livecd;regtest")
293 #do we add it to bootcd?
294 list(FIND _CD_FOR bootcd __cd)
295 if(NOT __cd EQUAL -1)
296 #whether or not we should put it in reactos.cab or directly on cd
299 foreach(item ${_CD_FILE})
301 #rename it in the cd tree
302 set(__file ${_CD_NAME_ON_CD})
304 get_filename_component(__file ${item} NAME)
306 set_property(GLOBAL APPEND PROPERTY BOOTCD_FILE_LIST "${_CD_DESTINATION}/${__file}=${item}")
310 add_dependencies(bootcd ${_CD_TARGET} converted_hives)
313 #add it in reactos.cab
314 dir_to_num(${_CD_DESTINATION} _num)
315 file(RELATIVE_PATH __relative_file ${REACTOS_SOURCE_DIR} ${_CD_FILE})
316 file(APPEND ${REACTOS_BINARY_DIR}/boot/bootdata/packages/reactos.dff.dyn "\"${__relative_file}\" ${_num}\n")
317 unset(__relative_file)
320 add_dependencies(reactos_cab ${_CD_TARGET})
321 # add this so that the combination make target/fast reactos_cab/fast bootcd/fast properly detects that reactos.cab must be rebuilt
322 if (CMAKE_BUILD_TOOL STREQUAL "make")
323 add_custom_command(TARGET ${_CD_TARGET}
325 COMMAND ${CMAKE_COMMAND} -E touch ${REACTOS_BINARY_DIR}/boot/bootdata/packages/reactos.dff)
331 #do we add it to livecd?
332 list(FIND _CD_FOR livecd __cd)
333 if(NOT __cd EQUAL -1)
336 add_dependencies(livecd ${_CD_TARGET} converted_hives)
338 foreach(item ${_CD_FILE})
340 #rename it in the cd tree
341 set(__file ${_CD_NAME_ON_CD})
343 get_filename_component(__file ${item} NAME)
345 set_property(GLOBAL APPEND PROPERTY LIVECD_FILE_LIST "${_CD_DESTINATION}/${__file}=${item}")
349 #do we add it to regtest?
350 list(FIND _CD_FOR regtest __cd)
351 if(NOT __cd EQUAL -1)
352 #whether or not we should put it in reactos.cab or directly on cd
355 foreach(item ${_CD_FILE})
357 #rename it in the cd tree
358 set(__file ${_CD_NAME_ON_CD})
360 get_filename_component(__file ${item} NAME)
362 set_property(GLOBAL APPEND PROPERTY BOOTCDREGTEST_FILE_LIST "${_CD_DESTINATION}/${__file}=${item}")
366 add_dependencies(bootcdregtest ${_CD_TARGET} converted_hives)
369 #add it in reactos.cab
370 #dir_to_num(${_CD_DESTINATION} _num)
371 #file(APPEND ${REACTOS_BINARY_DIR}/boot/bootdata/packages/reactos.dff.dyn "${_CD_FILE} ${_num}\n")
374 # add_dependencies(reactos_cab ${_CD_TARGET})
380 function(create_iso_lists)
381 get_property(_filelist GLOBAL PROPERTY BOOTCD_FILE_LIST)
382 string(REPLACE ";" "\n" _filelist "${_filelist}")
383 file(APPEND ${REACTOS_BINARY_DIR}/boot/bootcd.lst "${_filelist}")
386 get_property(_filelist GLOBAL PROPERTY LIVECD_FILE_LIST)
387 string(REPLACE ";" "\n" _filelist "${_filelist}")
388 file(APPEND ${REACTOS_BINARY_DIR}/boot/livecd.lst "${_filelist}")
391 get_property(_filelist GLOBAL PROPERTY BOOTCDREGTEST_FILE_LIST)
392 string(REPLACE ";" "\n" _filelist "${_filelist}")
393 file(APPEND ${REACTOS_BINARY_DIR}/boot/bootcdregtest.lst "${_filelist}")
397 # Create module_clean targets
398 function(add_clean_target _target)
399 set(_clean_working_directory ${CMAKE_CURRENT_BINARY_DIR})
400 if(CMAKE_GENERATOR STREQUAL "Unix Makefiles" OR CMAKE_GENERATOR STREQUAL "MinGW Makefiles")
401 set(_clean_command make clean)
402 elseif(CMAKE_GENERATOR STREQUAL "NMake Makefiles")
403 set(_clean_command nmake /nologo clean)
404 elseif(CMAKE_GENERATOR STREQUAL "Ninja")
405 set(_clean_command ninja -t clean ${_target})
406 set(_clean_working_directory ${REACTOS_BINARY_DIR})
408 add_custom_target(${_target}_clean
409 COMMAND ${_clean_command}
410 WORKING_DIRECTORY ${_clean_working_directory}
411 COMMENT "Cleaning ${_target}")
415 function(add_library name)
416 _add_library(${name} ${ARGN})
417 add_clean_target(${name})
420 function(add_executable name)
421 _add_executable(${name} ${ARGN})
422 add_clean_target(${name})
424 elseif(USE_FOLDER_STRUCTURE)
425 set_property(GLOBAL PROPERTY USE_FOLDERS ON)
426 string(LENGTH ${CMAKE_SOURCE_DIR} CMAKE_SOURCE_DIR_LENGTH)
428 function(add_custom_target name)
429 _add_custom_target(${name} ${ARGN})
430 string(SUBSTRING ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR_LENGTH} -1 CMAKE_CURRENT_SOURCE_DIR_RELATIVE)
431 set_property(TARGET "${name}" PROPERTY FOLDER "${CMAKE_CURRENT_SOURCE_DIR_RELATIVE}")
434 function(add_library name)
435 _add_library(${name} ${ARGN})
436 get_target_property(_target_excluded ${name} EXCLUDE_FROM_ALL)
437 if(_target_excluded AND ${name} MATCHES "^lib.*")
438 set_property(TARGET "${name}" PROPERTY FOLDER "Importlibs")
440 string(SUBSTRING ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR_LENGTH} -1 CMAKE_CURRENT_SOURCE_DIR_RELATIVE)
441 set_property(TARGET "${name}" PROPERTY FOLDER "${CMAKE_CURRENT_SOURCE_DIR_RELATIVE}")
445 function(add_executable name)
446 _add_executable(${name} ${ARGN})
447 string(SUBSTRING ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR_LENGTH} -1 CMAKE_CURRENT_SOURCE_DIR_RELATIVE)
448 set_property(TARGET "${name}" PROPERTY FOLDER "${CMAKE_CURRENT_SOURCE_DIR_RELATIVE}")
452 if(CMAKE_HOST_SYSTEM_NAME STREQUAL "Windows")
453 macro(to_win_path _cmake_path _native_path)
454 string(REPLACE "/" "\\" ${_native_path} "${_cmake_path}")
457 # yeah the parameter mess sucks, but thats what works...
458 function(concatenate_files _file1 _target2 _output)
459 get_target_property(_file2 ${_target2} LOCATION)
460 to_win_path("${_file1}" _real_file1)
461 to_win_path("${_file2}" _real_file2)
462 to_win_path("${_output}" _real_output)
465 COMMAND cmd.exe /C "copy /Y /B ${_real_file1} + ${_real_file2} ${_real_output} > nul"
470 macro(concatenate_files _file1 _target2 _output)
471 get_target_property(_file2 ${_target2} LOCATION)
474 COMMAND cat ${_file1} ${_file2} > ${_output}
480 function(add_importlibs _module)
481 add_dependency_node(${_module})
483 if("${LIB}" MATCHES "msvcrt")
484 add_target_compile_definitions(${_module} _DLL __USE_CRTIMP)
485 target_link_libraries(${_module} msvcrtex)
487 target_link_libraries(${_module} lib${LIB})
488 add_dependencies(${_module} lib${LIB})
489 add_dependency_edge(${_module} ${LIB})
493 function(set_module_type MODULE TYPE)
494 cmake_parse_arguments(__module "UNICODE;HOTPATCHABLE" "IMAGEBASE" "ENTRYPOINT" ${ARGN})
496 if(__module_UNPARSED_ARGUMENTS)
497 message(STATUS "set_module_type : unparsed arguments ${__module_UNPARSED_ARGUMENTS}, module : ${MODULE}")
500 # Set subsystem. Also take this as an occasion
501 # to error out if someone gave a non existing type
502 if((${TYPE} STREQUAL nativecui) OR (${TYPE} STREQUAL nativedll) OR (${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver))
503 set(__subsystem native)
504 elseif(${TYPE} STREQUAL win32cui)
505 set(__subsystem console)
506 elseif(${TYPE} STREQUAL win32gui)
507 set(__subsystem windows)
508 elseif(${TYPE} STREQUAL kbdlayout)
509 set_entrypoint(${MODULE} 0)
510 set_image_base(${MODULE} 0x5FFF0000)
511 set_subsystem(${MODULE} native)
513 # Merge the .text and .rdata section into the .data section
514 add_target_link_flags(${MODULE} "/ignore:4254 /SECTION:.data,ER /MERGE:.text=.data /MERGE:.rdata=.data /MERGE:.bss=.data /MERGE:.edata=.data")
516 # Use a custom linker script
517 add_target_link_flags(${MODULE} "-Wl,-T,${CMAKE_SOURCE_DIR}/kbdlayout.lds")
518 add_dependencies(${MODULE} "${CMAKE_SOURCE_DIR}/kbdlayout.lds")
520 elseif(NOT ((${TYPE} STREQUAL win32dll) OR (${TYPE} STREQUAL win32ocx)
521 OR (${TYPE} STREQUAL cpl) OR (${TYPE} STREQUAL module)))
522 message(FATAL_ERROR "Unknown type ${TYPE} for module ${MODULE}")
525 if(DEFINED __subsystem)
526 set_subsystem(${MODULE} ${__subsystem})
529 #set unicode definitions
531 add_target_compile_definitions(${MODULE} UNICODE _UNICODE)
534 # Handle hotpatchable images.
535 # GCC has this as a function attribute so we're handling it using DECLSPEC_HOTPATCH
536 if(__module_HOTPATCHABLE AND MSVC AND (NOT ARCH STREQUAL "arm"))
537 set_property(TARGET ${MODULE} APPEND_STRING PROPERTY COMPILE_FLAGS " /hotpatch")
538 if(ARCH STREQUAL "i386")
539 set_property(TARGET ${MODULE} APPEND_STRING PROPERTY LINK_FLAGS " /FUNCTIONPADMIN:5")
540 elseif(ARCH STREQUAL "amd64")
541 set_property(TARGET ${MODULE} APPEND_STRING PROPERTY LINK_FLAGS " /FUNCTIONPADMIN:6")
546 if(__module_ENTRYPOINT OR (__module_ENTRYPOINT STREQUAL "0"))
547 list(GET __module_ENTRYPOINT 0 __entrypoint)
548 list(LENGTH __module_ENTRYPOINT __length)
549 if(${__length} EQUAL 2)
550 list(GET __module_ENTRYPOINT 1 __entrystack)
551 elseif(NOT ${__length} EQUAL 1)
552 message(FATAL_ERROR "Wrong arguments for ENTRYPOINT parameter of set_module_type : ${__module_ENTRYPOINT}")
555 elseif(${TYPE} STREQUAL nativecui)
556 set(__entrypoint NtProcessStartup)
558 elseif(${TYPE} STREQUAL win32cui)
560 set(__entrypoint wmainCRTStartup)
562 set(__entrypoint mainCRTStartup)
564 elseif(${TYPE} STREQUAL win32gui)
566 set(__entrypoint wWinMainCRTStartup)
568 set(__entrypoint WinMainCRTStartup)
570 elseif((${TYPE} STREQUAL win32dll) OR (${TYPE} STREQUAL win32ocx)
571 OR (${TYPE} STREQUAL cpl))
572 set(__entrypoint DllMainCRTStartup)
574 elseif((${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver))
575 set(__entrypoint DriverEntry)
577 elseif(${TYPE} STREQUAL nativedll)
578 set(__entrypoint DllMain)
580 elseif(${TYPE} STREQUAL module)
584 if(DEFINED __entrypoint)
585 if(DEFINED __entrystack)
586 set_entrypoint(${MODULE} ${__entrypoint} ${__entrystack})
588 set_entrypoint(${MODULE} ${__entrypoint})
593 if(__module_IMAGEBASE)
594 set_image_base(${MODULE} __module_IMAGEBASE)
595 elseif(${TYPE} STREQUAL win32dll)
596 if(DEFINED baseaddress_${MODULE})
597 set_image_base(${MODULE} ${baseaddress_${MODULE}})
599 message(STATUS "${MODULE} has no base address")
601 elseif((${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver))
602 set_image_base(${MODULE} 0x00010000)
605 # Now do some stuff which is specific to each type
606 if((${TYPE} STREQUAL kernelmodedriver) OR (${TYPE} STREQUAL wdmdriver))
607 add_dependencies(${MODULE} bugcodes)
608 set_target_properties(${MODULE} PROPERTIES SUFFIX ".sys")
611 if(${TYPE} STREQUAL win32ocx)
612 set_target_properties(${MODULE} PROPERTIES SUFFIX ".ocx")
615 if(${TYPE} STREQUAL cpl)
616 set_target_properties(${MODULE} PROPERTIES SUFFIX ".cpl")
619 # do compiler specific stuff
620 set_module_type_toolchain(${MODULE} ${TYPE})
623 function(preprocess_file __in __out)
625 foreach(__def in ${ARGN})
626 list(APPEND __arg -D${__def})
629 add_custom_command(OUTPUT ${_out}
630 COMMAND ${CMAKE_C_COMPILER} /EP ${__arg}
633 add_custom_command(OUTPUT ${_out}
634 COMMAND ${CMAKE_C_COMPILER} -E ${__arg}
639 function(get_includes OUTPUT_VAR)
640 get_directory_property(_includes INCLUDE_DIRECTORIES)
641 foreach(arg ${_includes})
642 list(APPEND __tmp_var -I${arg})
644 set(${OUTPUT_VAR} ${__tmp_var} PARENT_SCOPE)
647 function(get_defines OUTPUT_VAR)
648 get_directory_property(_defines COMPILE_DEFINITIONS)
649 foreach(arg ${_defines})
650 list(APPEND __tmp_var -D${arg})
652 set(${OUTPUT_VAR} ${__tmp_var} PARENT_SCOPE)
656 function(add_object_library _target)
657 add_library(${_target} OBJECT ${ARGN})
660 function(add_object_library _target)
661 add_library(${_target} ${ARGN})
666 set(ROSSYM_LIB "rossym")