mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00

It contains the functionality of both the original bootcd (text-mode 1st-stage installer) and the livecd (that will include the 1st-stage GUI installer later). Our separate livecd ISOs become obsolete, and this completely removes the need for the so-called "hybridcd" ISO. Some details: - The "hybridcd" build target is completely removed, since now the new BootCD *is* basically what we used to call "hybridcd". - The "livecd" build target is kept so far (to minimize the code changes), but internally I start to refer to it as "LiveImage", and is reduced to a minimum. A minimal non-bootable "liveimg.iso" is built (but currently not included within the BootCD). Its purpose will be to implement the "ReactOS Live" functionality as a RAMDISK. (We currently don't support other file formats apart from ISO and flat disk for a RAMDISK). The "ReactOS Live" (non-RAMDISK) is implemented by adding to the BootCD file tree the files from the LiveImage. These files add two root directories, "Profiles" and "reactos" (which is the SystemRoot for the non-ramdisk LiveImage). - The minimal text-mode ReactOS installation used for the 1st-stage installer, including USETUP itself, and the executable for the 1st-stage GUI installer and the reactos.cab (installation source), are moved to the root directory called "i386" (ideally, one directory per architecture). - The "bootcdregtest" target, i.e. the ISOs we feed our testbots with, are left untouched, i.e. they are only constituted of the 1st-stage text-mode installation, in the root directory named "reactos". This commit is based upon an older SVN one: svn path=/branches/setup_improvements/; revision=75273
51 lines
2.2 KiB
CMake
51 lines
2.2 KiB
CMake
|
|
option(ENABLE_ROSAPPS "Enable building the ReactOS extra applications" OFF)
|
|
option(ENABLE_ROSTESTS "Enable building the ReactOS test suite" OFF)
|
|
option(ENABLE_WALLPAPERS "Integrate wallpapers into the built ISOs" OFF)
|
|
|
|
if(ENABLE_ROSAPPS)
|
|
add_subdirectory(rosapps)
|
|
endif()
|
|
|
|
if(ENABLE_ROSTESTS)
|
|
add_subdirectory(rostests)
|
|
endif()
|
|
|
|
if(ENABLE_WALLPAPERS)
|
|
add_subdirectory(wallpapers)
|
|
endif()
|
|
|
|
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/AHK_Tests/)
|
|
add_subdirectory(AHK_Tests)
|
|
endif()
|
|
|
|
## Extra files for the Boot/Live CD. You need to put them under "[boot|live]cd_extras"
|
|
## using the same layout as you want them to be in the CD.
|
|
## If you change the content of any of the following folders later on,
|
|
## run "cmake ." before compiling.
|
|
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/bootcd_extras/)
|
|
file(GLOB_RECURSE EXTRA_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/bootcd_extras/ ${CMAKE_CURRENT_SOURCE_DIR}/bootcd_extras/*)
|
|
foreach(item ${EXTRA_FILES})
|
|
add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/bootcd_extras/${item} DESTINATION extras NO_CAB NAME_ON_CD ${item} FOR bootcd regtest)
|
|
endforeach(item)
|
|
endif()
|
|
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/livecd_extras/)
|
|
file(GLOB_RECURSE EXTRA_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/livecd_extras/ ${CMAKE_CURRENT_SOURCE_DIR}/livecd_extras/*)
|
|
foreach(item ${EXTRA_FILES})
|
|
add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/livecd_extras/${item} DESTINATION extras NO_CAB NAME_ON_CD ${item} FOR livecd)
|
|
endforeach(item)
|
|
endif()
|
|
|
|
## Extra files which you need existing on the hard drive after the installation.
|
|
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/)
|
|
file(GLOB_RECURSE EXTRA_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/ ${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/*)
|
|
foreach(item ${EXTRA_FILES})
|
|
add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/${item} DESTINATION reactos/3rdParty NAME_ON_CD ${item} FOR bootcd)
|
|
endforeach(item)
|
|
endif()
|
|
|
|
# Add font file DroidSansFallback.ttf for LiveCD
|
|
# See also boot/bootdata/packages/reactos.dff.in
|
|
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/optional/DroidSansFallback.ttf)
|
|
add_cd_file(FILE "${CMAKE_CURRENT_SOURCE_DIR}/optional/DroidSansFallback.ttf" DESTINATION reactos/Fonts FOR livecd)
|
|
endif()
|