[NTOSKRNL] Drop the useless Timestamp field
[reactos.git] / dll / win32 / crtdll / CMakeLists.txt
1
2 spec2def(crtdll.dll crtdll.spec ADD_IMPORTLIB)
3
4 add_definitions(
5 -DUSE_MSVCRT_PREFIX
6 -D_MSVCRT_LIB_
7 -D_MSVCRT_
8 -DCRTDLL
9 -D_CTYPE_DISABLE_MACROS
10 -D_NO_INLINING
11 -D__MINGW_IMPORT="")
12
13 include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/crt/include)
14
15 list(APPEND SOURCE
16 dllmain.c
17 crtdll.rc
18 ${CMAKE_CURRENT_BINARY_DIR}/crtdll.def)
19
20 add_library(crtdll MODULE ${SOURCE})
21 set_module_type(crtdll win32dll ENTRYPOINT DllMain 12)
22 target_link_libraries(crtdll crt wine)
23
24 if(MSVC)
25 add_importlibs(crtdll msvcrt)
26 target_link_libraries(crtdll oldnames)
27 endif()
28
29 add_importlibs(crtdll kernel32 ntdll)
30 add_cd_file(TARGET crtdll DESTINATION reactos/system32 FOR all)