reactos/dll/shellext/deskmon/CMakeLists.txt
Hermès Bélusca-Maïto b819608ed8 Create a branch for console restructuration work.
svn path=/branches/condrv_restructure/; revision=63104
2014-05-02 14:13:40 +00:00

28 lines
484 B
CMake

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