mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
7e116f0ef3
Introduce a finer-grained remove_target_compile_option instead
21 lines
646 B
CMake
21 lines
646 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
|
spec2def(clusapi.dll clusapi.spec)
|
|
|
|
list(APPEND SOURCE
|
|
clusapi.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/clusapi_stubs.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/clusapi.def)
|
|
|
|
add_library(clusapi MODULE ${SOURCE})
|
|
|
|
if(MSVC)
|
|
# error C4312: 'type cast': conversion from 'unsigned int' to 'HCLUSTER' of greater size
|
|
remove_target_compile_option(clusapi "/we4312")
|
|
endif()
|
|
|
|
set_module_type(clusapi win32dll)
|
|
target_link_libraries(clusapi wine)
|
|
add_importlibs(clusapi msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET clusapi DESTINATION reactos/system32 FOR all)
|