mirror of
https://github.com/reactos/reactos
synced 2025-10-05 16:02:58 +02:00
- Move sdk\include\reactos\wine to sdk\include\wine - Reorder the directories in include_directories() to be closer to alphabetical. This should make it easier to determine what global include directories can be removed in the future.
18 lines
456 B
CMake
18 lines
456 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
spec2def(dwmapi.dll dwmapi.spec)
|
|
|
|
list(APPEND SOURCE
|
|
dwmapi_main.c)
|
|
|
|
add_library(dwmapi MODULE
|
|
${SOURCE}
|
|
version.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/dwmapi.def
|
|
${CMAKE_CURRENT_BINARY_DIR}/dwmapi_stubs.c)
|
|
|
|
set_module_type(dwmapi win32dll UNICODE ENTRYPOINT 0)
|
|
target_link_libraries(dwmapi uuid wine)
|
|
add_importlibs(dwmapi user32 kernel32 ntdll)
|
|
add_cd_file(TARGET dwmapi DESTINATION reactos/system32 FOR all)
|