mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 16:20:37 +00:00
9fa710c813
svn path=/branches/GSoC_2011/ThemesSupport/; revision=52643
29 lines
485 B
CMake
29 lines
485 B
CMake
|
|
set_unicode()
|
|
set_rc_compiler()
|
|
spec2def(deskadp.dll deskadp.spec)
|
|
|
|
list(APPEND SOURCE
|
|
deskadp.c
|
|
shxiface.c
|
|
deskadp.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/deskadp.def)
|
|
|
|
add_library(deskadp SHARED ${SOURCE})
|
|
|
|
set_module_type(deskadp win32dll)
|
|
|
|
target_link_libraries(deskadp uuid)
|
|
|
|
add_importlibs(deskadp
|
|
user32
|
|
gdi32
|
|
comctl32
|
|
ole32
|
|
msvcrt
|
|
kernel32
|
|
ntdll)
|
|
|
|
add_pch(deskadp precomp.h)
|
|
|
|
add_cd_file(TARGET deskadp DESTINATION reactos/system32 FOR all)
|