mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 10:28:45 +00:00

Re-trial of #7800. Deleting __WINESRC__ hacks. JIRA issue: CORE-5743 - Add sdk/cmake/set_wine_module.cmake. - Load set_wine_module.cmake at top-level CMakeLists.txt. - Use set_wine_module cmake function and delete __WINESRC__ as possible. - Delete many include_directories.
20 lines
572 B
CMake
20 lines
572 B
CMake
|
|
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)
|
|
set_wine_module(clusapi)
|