mirror of
https://github.com/reactos/reactos.git
synced 2025-01-10 08:10:18 +00:00
4bf0ec6bd9
Bootcd: Added : syssetup.inf, vgafonts.cab, c_28593.nls, ntvdm. Remove blue from reactos.cab. svn path=/branches/cmake-bringup/; revision=49484
20 lines
No EOL
806 B
CMake
20 lines
No EOL
806 B
CMake
|
|
list(APPEND SOURCE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/437-8x8.bin
|
|
${CMAKE_CURRENT_SOURCE_DIR}/737-8x8.bin
|
|
${CMAKE_CURRENT_SOURCE_DIR}/775-8x8.bin
|
|
${CMAKE_CURRENT_SOURCE_DIR}/850-8x8.bin
|
|
${CMAKE_CURRENT_SOURCE_DIR}/852-8x8.bin
|
|
${CMAKE_CURRENT_SOURCE_DIR}/865-8x8.bin
|
|
${CMAKE_CURRENT_SOURCE_DIR}/866-8x8.bin
|
|
${CMAKE_CURRENT_SOURCE_DIR}/932-8x8.bin
|
|
)
|
|
|
|
add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/vgafonts.cab
|
|
COMMAND native-cabman -M raw -S ${CMAKE_CURRENT_BINARY_DIR}/vgafonts.cab ${SOURCE}
|
|
DEPENDS ${SOURCE})
|
|
|
|
add_custom_target(vgafonts DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/vgafonts.cab)
|
|
|
|
add_minicd(${CMAKE_CURRENT_BINARY_DIR}/vgafonts.cab reactos vgafonts.cab)
|
|
add_cab(${CMAKE_CURRENT_BINARY_DIR}/vgafonts.cab 4) |