mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-24 17:29:38 +00:00
build SystemExtension example in multiple formats
This commit is contained in:
parent
7aaa3174df
commit
ee00fe1ec5
@ -7,10 +7,19 @@ add_executable(SystemExtension
|
|||||||
set_target_properties(SystemExtension PROPERTIES OUTPUT_NAME SystemExtension.flt)
|
set_target_properties(SystemExtension PROPERTIES OUTPUT_NAME SystemExtension.flt)
|
||||||
|
|
||||||
add_custom_command(
|
add_custom_command(
|
||||||
OUTPUT SystemExtension.dsk
|
OUTPUT SystemExtension.bin SystemExtension.dsk
|
||||||
COMMAND ${REZ} ${CMAKE_CURRENT_SOURCE_DIR}/SystemExtension.r
|
COMMAND ${REZ} ${CMAKE_CURRENT_SOURCE_DIR}/SystemExtension.r
|
||||||
--copy ${CMAKE_CURRENT_SOURCE_DIR}/Icons.rsrc.bin
|
--copy ${CMAKE_CURRENT_SOURCE_DIR}/Icons.rsrc.bin
|
||||||
|
-o SystemExtension.bin
|
||||||
|
-t INIT
|
||||||
|
COMMAND ${REZ} --copy SystemExtension.bin
|
||||||
-o SystemExtension.dsk
|
-o SystemExtension.dsk
|
||||||
-t INIT
|
-t INIT
|
||||||
|
COMMAND ${REZ} --copy SystemExtension.bin
|
||||||
|
-o SystemExtension
|
||||||
|
-t INIT
|
||||||
DEPENDS SystemExtension SystemExtension.r Icons.rsrc.bin)
|
DEPENDS SystemExtension SystemExtension.r Icons.rsrc.bin)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
add_custom_target(SystemExtension_INIT ALL DEPENDS SystemExtension.dsk)
|
add_custom_target(SystemExtension_INIT ALL DEPENDS SystemExtension.dsk)
|
||||||
|
Loading…
Reference in New Issue
Block a user