2011-05-16 13:12:07 +00:00
|
|
|
##bootcd
|
|
|
|
#clear it out
|
2013-07-21 13:33:03 +00:00
|
|
|
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/bootcd.lst "")
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
add_custom_target(bootcd
|
2013-07-21 13:33:03 +00:00
|
|
|
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
|
2011-08-05 20:40:40 +00:00
|
|
|
DEPENDS native-cdmake
|
2011-05-16 13:12:07 +00:00
|
|
|
VERBATIM)
|
2013-07-21 13:33:03 +00:00
|
|
|
|
2011-05-19 21:55:57 +00:00
|
|
|
##bootcdregtest
|
|
|
|
#clear it out
|
2013-07-21 13:33:03 +00:00
|
|
|
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/bootcdregtest.lst "")
|
2011-05-19 21:55:57 +00:00
|
|
|
|
|
|
|
add_custom_target(bootcdregtest
|
2013-07-21 13:33:03 +00:00
|
|
|
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
|
2011-08-05 20:40:40 +00:00
|
|
|
DEPENDS native-cdmake
|
2011-05-19 21:55:57 +00:00
|
|
|
VERBATIM)
|
|
|
|
|
2011-05-16 13:12:07 +00:00
|
|
|
##livecd
|
2013-07-21 13:33:03 +00:00
|
|
|
#clear it out and create the empty Desktop folder
|
|
|
|
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/livecd.lst "Profiles/Default User/Desktop\n")
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
add_custom_target(livecd
|
2013-07-21 13:33:03 +00:00
|
|
|
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
|
2011-08-05 20:40:40 +00:00
|
|
|
DEPENDS native-cdmake
|
2011-05-16 13:12:07 +00:00
|
|
|
VERBATIM)
|
|
|
|
|
|
|
|
add_subdirectory(freeldr)
|
|
|
|
add_subdirectory(bootdata)
|