2015-09-05 10:37:36 +00:00
|
|
|
|
2015-09-05 13:03:04 +00:00
|
|
|
PROJECT(msconfig_new)
|
|
|
|
|
2015-10-18 16:55:31 +00:00
|
|
|
include_directories(
|
|
|
|
.
|
|
|
|
comctl32ex
|
2020-09-18 09:08:58 +00:00
|
|
|
${REACTOS_SOURCE_DIR}/sdk/include/c++)
|
2015-10-18 16:55:31 +00:00
|
|
|
|
|
|
|
list(APPEND C_SOURCE
|
2015-10-31 21:00:32 +00:00
|
|
|
comctl32ex/comctl32supp.c
|
|
|
|
comctl32ex/listview.c
|
|
|
|
comctl32ex/treeview.c
|
2015-10-27 21:22:17 +00:00
|
|
|
comctl32ex/uxthemesupp.c
|
2015-10-20 23:59:28 +00:00
|
|
|
fileextractdialog.c
|
2015-10-20 21:57:36 +00:00
|
|
|
fileutils.c
|
2015-10-21 23:43:26 +00:00
|
|
|
freeldrpage.c
|
2015-09-05 10:37:36 +00:00
|
|
|
generalpage.c
|
|
|
|
msconfig.c
|
2015-10-26 23:03:21 +00:00
|
|
|
regutils.c
|
2015-10-21 23:43:26 +00:00
|
|
|
# startuppage.c
|
2015-09-05 13:03:04 +00:00
|
|
|
stringutils.c
|
2015-10-18 17:10:38 +00:00
|
|
|
utils.c)
|
2015-09-05 10:37:36 +00:00
|
|
|
|
2015-10-18 16:55:31 +00:00
|
|
|
list(APPEND CPP_SOURCE
|
2015-10-31 21:00:32 +00:00
|
|
|
systempage.cpp
|
2015-10-26 23:03:21 +00:00
|
|
|
srvpage.cpp
|
2015-10-18 16:55:31 +00:00
|
|
|
toolspage.cpp
|
2015-10-18 17:10:38 +00:00
|
|
|
xmldomparser.cpp
|
|
|
|
precomp.h)
|
2015-10-18 16:55:31 +00:00
|
|
|
|
2015-09-05 10:37:36 +00:00
|
|
|
add_rc_deps(msconfig.rc ${CMAKE_CURRENT_SOURCE_DIR}/res/msconfig.ico)
|
2015-10-18 16:55:31 +00:00
|
|
|
add_executable(msconfig_new ${C_SOURCE} ${CPP_SOURCE} msconfig.rc)
|
2015-10-18 17:10:38 +00:00
|
|
|
add_pch(msconfig_new precomp.h CPP_SOURCE)
|
2015-09-05 13:03:04 +00:00
|
|
|
set_module_type(msconfig_new win32gui UNICODE)
|
2020-09-18 09:08:58 +00:00
|
|
|
target_link_libraries(msconfig_new comsupp cpprt atl_classes)
|
2020-09-18 07:34:18 +00:00
|
|
|
set_target_cpp_properties(msconfig_new WITH_EXCEPTIONS)
|
2015-10-21 23:43:26 +00:00
|
|
|
add_importlibs(msconfig_new user32 gdi32 comctl32 comdlg32 advapi32 version ole32 oleaut32 msxml3 shell32 shlwapi msvcrt kernel32)
|
2015-09-05 13:03:04 +00:00
|
|
|
add_cd_file(TARGET msconfig_new DESTINATION reactos/system32 FOR all)
|