2011-05-16 13:12:07 +00:00
|
|
|
|
2011-06-26 21:29:55 +00:00
|
|
|
spec2def(aclui.dll aclui.spec)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_definitions(-DSUPPORT_UXTHEME)
|
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
aclui.c
|
|
|
|
checklist.c
|
|
|
|
misc.c
|
2020-05-09 21:37:40 +00:00
|
|
|
sidcache.c)
|
|
|
|
|
|
|
|
list(APPEND PCH_SKIP_SOURCE
|
|
|
|
guid.c)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(aclui MODULE
|
2014-02-10 12:19:56 +00:00
|
|
|
${SOURCE}
|
2020-05-09 21:37:40 +00:00
|
|
|
${PCH_SKIP_SOURCE}
|
2014-02-10 12:19:56 +00:00
|
|
|
aclui.rc
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/aclui.def)
|
2012-03-12 12:39:51 +00:00
|
|
|
|
2011-09-03 19:11:44 +00:00
|
|
|
set_module_type(aclui win32dll UNICODE)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_importlibs(aclui user32 gdi32 comctl32 ole32 oleaut32 advapi32 uxtheme msvcrt kernel32 ntdll)
|
2020-05-09 21:37:40 +00:00
|
|
|
add_pch(aclui precomp.h "${PCH_SKIP_SOURCE}")
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET aclui DESTINATION reactos/system32 FOR all)
|