reactos/media/vgafonts/CMakeLists.txt
Cameron Gutman c2d0d784c7 [USB-BRINGUP-TRUNK]
- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup
- In the future, DO NOT under any circumstances branch another branch. This leads to merge problems!

svn path=/branches/usb-bringup-trunk/; revision=55018
2012-01-20 20:58:46 +00:00

19 lines
804 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} native-cabman)
add_custom_target(vgafonts DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/vgafonts.cab)
add_cd_file(TARGET vgafonts FILE ${CMAKE_CURRENT_BINARY_DIR}/vgafonts.cab DESTINATION reactos NO_CAB FOR all)