# #fbird - Text based game that fits in an X86 BIOS boot sector # #You can use the built ${CMAKE_INSTALL_PREFIX}/boot/fbird file in order to #test mkisofs and other low level tools that manipulate the boot sector. # #The following command can then be used to generate a bootable ISO image #containing the files that have been installed under ${CMAKE_INSTALL_PREFIX} # #mkisofs -U -b boot/fbird -V "Volume name" -iso-level 3 -o bootcd.iso ${CMAKE_INSTALL_PREFIX} # ExternalProject_Add ( fbird PREFIX ${CMAKE_INSTALL_PREFIX} URL https://github.com/nanochess/fbird/archive/51798ab89cb251721310386f4d41ee63cafbde01.zip URL_MD5 7434b10d8534b909c95b64cbd4e5e510 CONFIGURE_COMMAND "" BUILD_COMMAND $ -f bin /fbird.asm -o fbird INSTALL_COMMAND ${CMAKE_COMMAND} -DCMAKE_INSTALL_PREFIX= -P ${CMAKE_CURRENT_LIST_DIR}/install.cmake DEPENDS yasm )