xref: /reactos/dll/win32/comcat/CMakeLists.txt (revision 53221834)
1
2add_definitions(-D__WINESRC__)
3include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
4spec2def(comcat.dll comcat.spec)
5
6list(APPEND SOURCE
7    comcat_main.c
8    ${CMAKE_CURRENT_BINARY_DIR}/comcat.def)
9
10add_library(comcat MODULE ${SOURCE} version.rc)
11set_module_type(comcat win32dll)
12add_importlibs(comcat ole32 msvcrt kernel32)
13add_cd_file(TARGET comcat DESTINATION reactos/system32 FOR all)
14