mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
527f2f9057
* Create a branch for some evul shell experiments. svn path=/branches/shell-experiments/; revision=61927
29 lines
1.1 KiB
CMake
29 lines
1.1 KiB
CMake
##bootcd
|
|
#clear it out
|
|
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/bootcd.lst "")
|
|
|
|
add_custom_target(bootcd
|
|
COMMAND native-cdmake -j -m -b ${CMAKE_CURRENT_BINARY_DIR}/freeldr/bootsect/isoboot.bin @${CMAKE_CURRENT_BINARY_DIR}/bootcd.lst REACTOS ${REACTOS_BINARY_DIR}/bootcd.iso
|
|
DEPENDS native-cdmake
|
|
VERBATIM)
|
|
|
|
##bootcdregtest
|
|
#clear it out
|
|
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/bootcdregtest.lst "")
|
|
|
|
add_custom_target(bootcdregtest
|
|
COMMAND native-cdmake -j -m -b ${CMAKE_CURRENT_BINARY_DIR}/freeldr/bootsect/isobtrt.bin @${CMAKE_CURRENT_BINARY_DIR}/bootcdregtest.lst REACTOS ${REACTOS_BINARY_DIR}/bootcdregtest.iso
|
|
DEPENDS native-cdmake
|
|
VERBATIM)
|
|
|
|
##livecd
|
|
#clear it out and create the empty Desktop folder
|
|
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/livecd.lst "Profiles/Default User/Desktop\n")
|
|
|
|
add_custom_target(livecd
|
|
COMMAND native-cdmake -j -m -b ${CMAKE_CURRENT_BINARY_DIR}/freeldr/bootsect/isoboot.bin @${CMAKE_CURRENT_BINARY_DIR}/livecd.lst REACTOS ${REACTOS_BINARY_DIR}/livecd.iso
|
|
DEPENDS native-cdmake
|
|
VERBATIM)
|
|
|
|
add_subdirectory(freeldr)
|
|
add_subdirectory(bootdata)
|