- Add all publicly available information about the spoolsv RPC interface of Windows...
[reactos.git] / reactos / boot / CMakeLists.txt
1 ##bootcd
2 #clear it out
3 file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/bootcd.lst "")
4
5 add_custom_target(bootcd
6 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
7 DEPENDS native-cdmake
8 VERBATIM)
9
10 ##bootcdregtest
11 #clear it out
12 file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/bootcdregtest.lst "")
13
14 add_custom_target(bootcdregtest
15 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
16 DEPENDS native-cdmake
17 VERBATIM)
18
19 ##livecd
20 #clear it out
21 file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/livecd.lst "")
22
23 #create the empty Desktop and Start Menu folders
24 file(APPEND ${CMAKE_CURRENT_BINARY_DIR}/livecd.lst "Profiles/Default User/Desktop\n")
25 file(APPEND ${CMAKE_CURRENT_BINARY_DIR}/livecd.lst "Profiles/Default User/Start Menu/Programs\n")
26
27 add_custom_target(livecd
28 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
29 DEPENDS native-cdmake
30 VERBATIM)
31
32 ##hybridcd
33 #clear it out
34 file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/hybridcd.lst "")
35
36 #create the empty Desktop and Start Menu folders
37 file(APPEND ${CMAKE_CURRENT_BINARY_DIR}/hybridcd.lst "livecd/Profiles/Default User/Desktop\n")
38 file(APPEND ${CMAKE_CURRENT_BINARY_DIR}/hybridcd.lst "livecd/Profiles/Default User/Start Menu/Programs\n")
39
40 add_custom_target(hybridcd
41 COMMAND native-cdmake -j -m -b ${CMAKE_CURRENT_BINARY_DIR}/freeldr/bootsect/isoboot.bin @${CMAKE_CURRENT_BINARY_DIR}/hybridcd.lst REACTOS ${REACTOS_BINARY_DIR}/hybridcd.iso
42 DEPENDS native-cdmake bootcd livecd
43 VERBATIM)
44
45 add_subdirectory(freeldr)
46 add_subdirectory(bootdata)