mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 11:56:26 +00:00
4f0b8d3db0
svn path=/branches/ntvdm/; revision=59241
26 lines
584 B
CMake
26 lines
584 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
remove_definitions(-D_WIN32_WINNT=0x502)
|
|
add_definitions(-D_WIN32_WINNT=0x600)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
spec2def(comcat.dll comcat.spec)
|
|
|
|
list(APPEND SOURCE
|
|
comcat_main.c
|
|
version.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/comcat.def)
|
|
|
|
add_library(comcat SHARED ${SOURCE})
|
|
|
|
set_module_type(comcat win32dll)
|
|
|
|
target_link_libraries(comcat uuid wine)
|
|
|
|
add_importlibs(comcat msvcrt ole32 user32 advapi32 kernel32 ntdll)
|
|
|
|
add_dependencies(comcat psdk)
|
|
add_cd_file(TARGET comcat DESTINATION reactos/system32 FOR all)
|