mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
ddb3d908c9
svn path=/branches/shell-experiments/; revision=62286
27 lines
484 B
CMake
27 lines
484 B
CMake
|
|
spec2def(deskadp.dll deskadp.spec)
|
|
|
|
list(APPEND SOURCE
|
|
deskadp.c
|
|
shxiface.c
|
|
precomp.h)
|
|
|
|
add_library(deskadp SHARED
|
|
${SOURCE}
|
|
deskadp.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/deskadp.def)
|
|
|
|
set_module_type(deskadp win32dll UNICODE)
|
|
target_link_libraries(deskadp uuid)
|
|
|
|
add_importlibs(deskadp
|
|
user32
|
|
gdi32
|
|
comctl32
|
|
ole32
|
|
msvcrt
|
|
kernel32
|
|
ntdll)
|
|
|
|
add_pch(deskadp precomp.h SOURCE)
|
|
add_cd_file(TARGET deskadp DESTINATION reactos/system32 FOR all)
|