[CMAKE]
[reactos.git] / dll / win32 / activeds / CMakeLists.txt
1
2 add_definitions(-D__WINESRC__)
3
4 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
5
6 spec2def(activeds.dll activeds.spec)
7
8 list(APPEND SOURCE
9 activeds_main.c
10 stubs.c
11 ${CMAKE_CURRENT_BINARY_DIR}/activeds.def)
12
13 add_library(activeds SHARED ${SOURCE})
14
15 set_module_type(activeds win32dll)
16
17 target_link_libraries(activeds wine)
18
19 add_importlibs(activeds msvcrt kernel32 ntdll)
20
21 add_cd_file(TARGET activeds DESTINATION reactos/system32 FOR all)