reactos/sdk/tools/xml2sdb/CMakeLists.txt
Jérôme Gardou 493ceb7ade [CMAKE] Fix host tools build on x86-64 mingw
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
2019-11-15 16:22:06 +01:00

24 lines
664 B
CMake

add_definitions(-DSDBWRITE_HOSTTOOL=1)
list(APPEND SOURCE
main.cpp
tinyxml2.cpp
xml2sdb.cpp
xml2sdb.h
${REACTOS_SOURCE_DIR}/dll/appcompat/apphelp/sdbwrite.c
${REACTOS_SOURCE_DIR}/dll/appcompat/apphelp/sdbstringtable.c)
include_directories(
${REACTOS_SOURCE_DIR}/dll/appcompat/apphelp
${REACTOS_SOURCE_DIR}/sdk/include/reactos/appcompat)
add_host_tool(xml2sdb ${SOURCE})
target_link_libraries(xml2sdb PRIVATE host_includes)
if(MSVC)
# Disable warning "'=': conversion from 'a' to 'b', possible loss of data"
add_target_compile_flags(xml2sdb "/wd4244")
else()
add_target_compile_flags(xml2sdb "-fshort-wchar")
endif()