mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
[USETUP]
* Prepare the CMake script for PCH. CORE-7716 svn path=/trunk/; revision=62130
This commit is contained in:
parent
1a253ac498
commit
83ab5a5824
1 changed files with 5 additions and 3 deletions
|
@ -6,7 +6,7 @@ include_directories(
|
|||
${REACTOS_SOURCE_DIR}/include/reactos/libs/zlib
|
||||
${REACTOS_SOURCE_DIR}/include/reactos/drivers)
|
||||
|
||||
add_executable(usetup
|
||||
list(APPEND SOURCE
|
||||
interface/usetup.c
|
||||
interface/devinst.c
|
||||
interface/consup.c
|
||||
|
@ -30,7 +30,9 @@ add_executable(usetup
|
|||
progress.c
|
||||
registry.c
|
||||
settings.c
|
||||
usetup.rc)
|
||||
usetup.h)
|
||||
|
||||
add_executable(usetup ${SOURCE} usetup.rc)
|
||||
|
||||
target_link_libraries(usetup
|
||||
zlib
|
||||
|
@ -40,5 +42,5 @@ target_link_libraries(usetup
|
|||
|
||||
set_module_type(usetup nativecui)
|
||||
add_importlibs(usetup ntdll)
|
||||
add_pch(usetup usetup.h)
|
||||
add_pch(usetup usetup.h SOURCE)
|
||||
add_cd_file(TARGET usetup DESTINATION reactos/system32 NO_CAB NAME_ON_CD smss.exe FOR bootcd regtest)
|
||||
|
|
Loading…
Reference in a new issue