[NTOSKRNL] Drop the useless Timestamp field
[reactos.git] / dll / win32 / objsel / CMakeLists.txt
1
2 remove_definitions(-D_WIN32_WINNT=0x502)
3 add_definitions(-D_WIN32_WINNT=0x600)
4
5 add_definitions(-D__WINESRC__)
6 include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
7 spec2def(objsel.dll objsel.spec)
8
9 list(APPEND SOURCE
10 factory.c
11 objsel.c
12 precomp.h)
13
14 add_library(objsel MODULE
15 ${SOURCE}
16 objsel.rc
17 ${CMAKE_CURRENT_BINARY_DIR}/objsel.def)
18
19 set_module_type(objsel win32dll)
20 target_link_libraries(objsel uuid wine)
21 add_importlibs(objsel ole32 advapi32 msvcrt kernel32 ntdll)
22 add_pch(objsel precomp.h SOURCE)
23 add_cd_file(TARGET objsel DESTINATION reactos/system32 FOR all)