mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
8db8028cbd
- More work on the base modules. - Fix a typo. - Fix shlwapi and audio_test builds. svn path=/branches/cmake-bringup/; revision=49061
20 lines
449 B
CMake
20 lines
449 B
CMake
|
|
set_unicode()
|
|
|
|
list(APPEND SOURCE
|
|
toolspage.c
|
|
srvpage.c
|
|
systempage.c
|
|
startuppage.c
|
|
freeldrpage.c
|
|
generalpage.c
|
|
msconfig.c
|
|
msconfig.rc)
|
|
|
|
add_executable(msconfig ${CMAKE_CURRENT_BINARY_DIR}/msconfig_precomp.h.gch ${SOURCE})
|
|
|
|
add_pch(msconfig ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
|
|
|
|
set_module_type(msconfig win32gui)
|
|
|
|
add_importlibs(msconfig user32 advapi32 version comctl32 shell32 shlwapi msvcrt kernel32)
|