mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00

- Move some dlls with no stubs into using def files instead of spec files. svn path=/branches/cmake-bringup/; revision=49448
30 lines
569 B
CMake
30 lines
569 B
CMake
|
|
set_unicode()
|
|
|
|
add_definitions(-DSUPPORT_UXTHEME)
|
|
|
|
list(APPEND SOURCE
|
|
aclui.c
|
|
checklist.c
|
|
guid.c
|
|
misc.c
|
|
sidcache.c
|
|
aclui.rc
|
|
aclui.def)
|
|
|
|
if(NOT MSVC)
|
|
set_source_files_properties(aclui.def PROPERTIES EXTERNAL_OBJECT TRUE)
|
|
endif()
|
|
|
|
|
|
add_library(aclui SHARED
|
|
${CMAKE_CURRENT_BINARY_DIR}/aclui_precomp.h.gch
|
|
${SOURCE})
|
|
|
|
set_module_type(aclui win32dll)
|
|
|
|
add_importlibs(aclui user32 gdi32 comctl32 ole32 oleaut32 advapi32 uxtheme kernel32 ntdll)
|
|
|
|
add_pch(aclui ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
|
|
|
|
add_cab_target(aclui 1)
|