split ROM build out into its own project

This commit is contained in:
Christopher A. Mosher 2022-12-02 09:30:17 -05:00
parent 1f799ed3af
commit 0b63800a3a
2 changed files with 5 additions and 1 deletions

2
rom/.gitignore vendored
View File

@ -1,3 +1,5 @@
*.r65
*.a65
*.s65
/build/

View File

@ -1 +1,3 @@
add_custom_target(roms COMMAND make WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
cmake_minimum_required(VERSION 3.22.1)
project(epple2roms)
add_custom_target(roms ALL COMMAND make WORKING_DIRECTORY ${PROJECT_SOURCE_DIR})