mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 20:02:55 +00:00
7e069ccdb2
add_target_compile_definitions -> target_compile_definitions add_target_compile_flags -> target_compile_options add_target_include_directories -> target_include_directories
56 lines
1.2 KiB
CMake
56 lines
1.2 KiB
CMake
|
|
if(NOT MSVC AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 7.0)
|
|
add_compile_flags("-Wno-misleading-indentation")
|
|
endif()
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/libs/libxslt
|
|
${REACTOS_SOURCE_DIR}/sdk/lib/3rdparty/libwin-iconv)
|
|
|
|
add_definitions(
|
|
-DHAVE_CONFIG_H
|
|
-DWIN32
|
|
-D_WINDOWS
|
|
-D_MBCS
|
|
-DHAVE_STAT
|
|
-DHAVE_WIN32_THREADS
|
|
-D_REENTRANT
|
|
-DLIBXML_STATIC)
|
|
|
|
list(APPEND SOURCE
|
|
attributes.c
|
|
attrvt.c
|
|
documents.c
|
|
extensions.c
|
|
extra.c
|
|
functions.c
|
|
imports.c
|
|
keys.c
|
|
namespaces.c
|
|
numbers.c
|
|
pattern.c
|
|
preproc.c
|
|
security.c
|
|
templates.c
|
|
transform.c
|
|
variables.c
|
|
xslt.c
|
|
xsltlocale.c
|
|
xsltutils.c
|
|
precomp.h)
|
|
|
|
add_library(libxslt MODULE ${SOURCE})
|
|
set_module_type(libxslt win32dll)
|
|
target_link_libraries(libxslt libxml2 iconv-static zlib)
|
|
add_importlibs(libxslt msvcrt ws2_32 kernel32)
|
|
|
|
if(MSVC)
|
|
add_importlibs(libxslt ntdll)
|
|
endif()
|
|
|
|
add_pch(libxslt precomp.h SOURCE)
|
|
add_cd_file(TARGET libxslt DESTINATION reactos/system32 FOR all)
|
|
|
|
if(USE_CLANG_CL OR (NOT MSVC))
|
|
target_compile_options(libxslt PRIVATE -Wno-pointer-sign -Wno-unused-function)
|
|
endif()
|