mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
12c54162f5
- Add almost all base applications (some are included but disabled too). This is the work of a human being, so no bots BS, no rbuildism, every single module was tested, built with the new build system mentality (no defines and linked libs redundancy, use of the the available macros, the linked libs are carefully selected, the dependencies are correctly tracked... etc) - Brought to you by Alexey Komarov, with my humble review. svn path=/branches/cmake-bringup/; revision=48973
20 lines
440 B
CMake
20 lines
440 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)
|