reactos/dll/cpl/timedate/CMakeLists.txt
Amine Khaldi ddb3d908c9 * Sync up to trunk HEAD (r62285). Branch guys deserve the significant speedups too ;)
svn path=/branches/shell-experiments/; revision=62286
2014-02-22 10:31:26 +00:00

33 lines
552 B
CMake

spec2def(timedate.cpl timedate.spec)
list(APPEND SOURCE
clock.c
dateandtime.c
internettime.c
monthcal.c
ntpclient.c
timedate.c
timezone.c
timedate.h)
add_library(timedate SHARED
${SOURCE}
timedate.rc
${CMAKE_CURRENT_BINARY_DIR}/timedate.def)
set_module_type(timedate cpl UNICODE)
add_importlibs(timedate
advapi32
user32
gdi32
comctl32
ws2_32
iphlpapi
msvcrt
kernel32)
add_pch(timedate timedate.h SOURCE)
add_cd_file(TARGET timedate DESTINATION reactos/system32 FOR all)