mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00

Add minicd target. This partial bootcd target produces a minicd iso, able to start the install process to the cabinet installation page. svn path=/branches/cmake-bringup/; revision=49072
42 lines
850 B
CMake
42 lines
850 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/lib/newinflib)
|
|
include_directories(${REACTOS_SOURCE_DIR}/lib/3rdparty/zlib)
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/drivers)
|
|
|
|
add_executable(usetup
|
|
interface/usetup.c
|
|
interface/devinst.c
|
|
interface/consup.c
|
|
native/utils/keytrans.c
|
|
native/utils/console.c
|
|
native/fslist.c
|
|
native/console.c
|
|
bootsup.c
|
|
cabinet.c
|
|
chkdsk.c
|
|
drivesup.c
|
|
filesup.c
|
|
filequeue.c
|
|
format.c
|
|
fslist.c
|
|
genlist.c
|
|
inffile.c
|
|
inicache.c
|
|
mui.c
|
|
partlist.c
|
|
progress.c
|
|
registry.c
|
|
settings.c
|
|
usetup.rc)
|
|
|
|
target_link_libraries(usetup
|
|
mingw_main
|
|
zlib
|
|
newinflib
|
|
ext2lib
|
|
vfatlib
|
|
mingw_common)
|
|
|
|
set_module_type(usetup nativecui)
|
|
add_importlibs(usetup kernel32 ntdll)
|
|
add_minicd_target(usetup reactos/system32 smss.exe)
|