reactos/dll/win32/uxtheme/themecfg/CMakeLists.txt
Giannis Adamopoulos ab880775f5 [themecfg]
- Add a test utility called themecfg that can configure themes. This is a small part of winecfg from wine. With this utility we can test themes support now. In the future this functionality will become part of desk.cpl

svn path=/branches/GSoC_2011/ThemesSupport/; revision=52664
2011-07-12 21:09:43 +00:00

16 lines
325 B
CMake

set_rc_compiler()
list(APPEND SOURCE
theme.c
themecfg.c
themecfg.rc)
add_executable(themecfg ${SOURCE})
set_module_type(themecfg win32gui)
add_importlibs(themecfg msvcrt user32 gdi32 comctl32 kernel32 uxtheme shell32 ole32 comdlg32 shlwapi)
add_cd_file(TARGET themecfg DESTINATION reactos/system32 FOR all)