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