mirror of
https://github.com/reactos/reactos.git
synced 2025-04-19 04:07:16 +00:00

- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup - In the future, DO NOT under any circumstances branch another branch. This leads to merge problems! svn path=/branches/usb-bringup-trunk/; revision=55018
22 lines
502 B
CMake
22 lines
502 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
set_rc_compiler()
|
|
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 SHARED ${SOURCE})
|
|
|
|
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)
|