reactos/dll/shellext/deskmon/CMakeLists.txt
Amine Khaldi 4f2d0d54b0 * Sync to recent trunk (r52563).
svn path=/branches/GSoC_2011/TcpIpDriver/; revision=52565
2011-07-08 01:50:19 +00:00

30 lines
486 B
CMake

set_unicode()
set_rc_compiler()
spec2def(deskmon.dll deskmon.spec)
list(APPEND SOURCE
deskmon.c
shxiface.c
deskmon.rc
${CMAKE_CURRENT_BINARY_DIR}/deskmon.def)
add_library(deskmon SHARED ${SOURCE})
set_module_type(deskmon win32dll)
target_link_libraries(deskmon uuid)
add_importlibs(deskmon
user32
gdi32
comctl32
ole32
msvcrt
kernel32
ntdll)
add_pch(deskmon precomp.h)
add_cd_file(TARGET deskmon DESTINATION reactos/system32 FOR all)