mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
493ceb7ade
Dynamically check for sys/types.h and pid_t in wine config.h Use TARGET_xxx defines instead of _X86_ as this is undefined by GCC Add some sense in include directories management by using interface libraries
36 lines
738 B
CMake
36 lines
738 B
CMake
|
|
add_definitions(
|
|
-D_NTSYSTEM_
|
|
-DNASSERT)
|
|
|
|
list(APPEND SOURCE
|
|
cminit.c
|
|
cmindex.c
|
|
cmkeydel.c
|
|
cmname.c
|
|
cmse.c
|
|
cmvalue.c
|
|
hivebin.c
|
|
hivecell.c
|
|
hiveinit.c
|
|
hivesum.c
|
|
hivewrt.c
|
|
cmlib.h)
|
|
|
|
if(CMAKE_CROSSCOMPILING)
|
|
add_library(cmlib ${SOURCE})
|
|
add_dependencies(cmlib bugcodes xdk)
|
|
add_pch(cmlib cmlib.h SOURCE)
|
|
else()
|
|
add_definitions(
|
|
-D__NO_CTYPE_INLINES
|
|
-DCMLIB_HOST)
|
|
add_library(cmlibhost ${SOURCE})
|
|
target_include_directories(cmlibhost INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
if(NOT MSVC)
|
|
add_target_compile_flags(cmlibhost "-fshort-wchar -Wno-multichar")
|
|
endif()
|
|
|
|
target_link_libraries(cmlibhost PRIVATE host_includes)
|
|
endif()
|