reactos/dll/win32/aclui/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

23 lines
498 B
CMake

spec2def(aclui.dll aclui.spec)
add_definitions(-DSUPPORT_UXTHEME)
list(APPEND SOURCE
aclui.c
checklist.c
misc.c
sidcache.c
precomp.h)
add_library(aclui SHARED
${SOURCE}
guid.c
aclui.rc
${CMAKE_CURRENT_BINARY_DIR}/aclui.def)
set_module_type(aclui win32dll UNICODE)
add_importlibs(aclui user32 gdi32 comctl32 ole32 oleaut32 advapi32 uxtheme msvcrt kernel32 ntdll)
add_pch(aclui precomp.h SOURCE)
add_cd_file(TARGET aclui DESTINATION reactos/system32 FOR all)