From 1a357761e246991bc52a4a39b4ecc57c601c95f5 Mon Sep 17 00:00:00 2001 From: scawful Date: Wed, 24 Jul 2024 09:39:05 -0400 Subject: [PATCH] add zelda3/CMakeLists.txt --- src/app/CMakeLists.txt | 1 + src/app/zelda3/CMakeLists.txt | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 src/app/zelda3/CMakeLists.txt diff --git a/src/app/CMakeLists.txt b/src/app/CMakeLists.txt index 1e02f959..85b0ff7f 100644 --- a/src/app/CMakeLists.txt +++ b/src/app/CMakeLists.txt @@ -1,4 +1,5 @@ include(app/editor/CMakeLists.txt) +include(app/zelda3/CMakeLists.txt) add_executable( yaze diff --git a/src/app/zelda3/CMakeLists.txt b/src/app/zelda3/CMakeLists.txt new file mode 100644 index 00000000..3b021326 --- /dev/null +++ b/src/app/zelda3/CMakeLists.txt @@ -0,0 +1,12 @@ +set( + YAZE_APP_ZELDA3_SRC + app/zelda3/overworld/overworld_map.cc + app/zelda3/overworld/overworld.cc + app/zelda3/screen/inventory.cc + app/zelda3/screen/title_screen.cc + app/zelda3/sprite/sprite.cc + app/zelda3/music/tracker.cc + app/zelda3/dungeon/room.cc + app/zelda3/dungeon/room_object.cc + app/zelda3/dungeon/object_renderer.cc +) \ No newline at end of file