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.
15 lines
430 B
CMake
15 lines
430 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/wine)
|
|
spec2def(mcicda.dll mcicda.spec)
|
|
|
|
list(APPEND SOURCE
|
|
mcicda.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/mcicda.def)
|
|
|
|
add_library(mcicda MODULE ${SOURCE})
|
|
set_module_type(mcicda win32dll)
|
|
target_link_libraries(mcicda wine)
|
|
add_importlibs(mcicda winmm user32 msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET mcicda DESTINATION reactos/system32 FOR all)
|