From 8b9a4a867fe7e23210e64ca05399ac0c8060cdf5 Mon Sep 17 00:00:00 2001 From: scawful Date: Fri, 30 Aug 2024 02:28:11 -0400 Subject: [PATCH] add win32 dir for yaze.res, yaze.rc and yaze.ico --- docs/infrastructure.md | 3 ++- src/CMakeLists.txt | 2 +- src/{ => win32}/yaze.ico | Bin src/{ => win32}/yaze.rc | 0 src/{ => win32}/yaze.res | Bin 5 files changed, 3 insertions(+), 2 deletions(-) rename src/{ => win32}/yaze.ico (100%) rename src/{ => win32}/yaze.rc (100%) rename src/{ => win32}/yaze.res (100%) diff --git a/docs/infrastructure.md b/docs/infrastructure.md index 614b3e17..61e70294 100644 --- a/docs/infrastructure.md +++ b/docs/infrastructure.md @@ -21,12 +21,13 @@ The goal of yaze is to build a cross platform editor for the Legend of Zelda: A - **src**: Contains source files. - **app**: Contains the GUI editor `yaze` - **app/emu**: Contains a standalone Snes emulator application `yaze_emu` - - **base**: Contains the base data headers for `yaze_c` - **cli**: Contains the command line interface `z3ed` + - **incl**: Contains the data headers for `yaze_c` - **ios**: Contains the iOS application `yaze_ios` - **lib**: Contains the dependencies as git submodules - **py**: Contains the Python module `yaze_py` - **test**: Contains testing interface `yaze_test` + - **win32**: Contains Windows resource file and icon ## Dependencies diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 9db57ac7..a6ae982c 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -113,7 +113,7 @@ set_target_properties(yaze ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib" LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib" RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin" - LINK_FLAGS "${CMAKE_CURRENT_SOURCE_DIR}/yaze.res" + LINK_FLAGS "${CMAKE_CURRENT_SOURCE_DIR}/win32/yaze.res" ) endif() diff --git a/src/yaze.ico b/src/win32/yaze.ico similarity index 100% rename from src/yaze.ico rename to src/win32/yaze.ico diff --git a/src/yaze.rc b/src/win32/yaze.rc similarity index 100% rename from src/yaze.rc rename to src/win32/yaze.rc diff --git a/src/yaze.res b/src/win32/yaze.res similarity index 100% rename from src/yaze.res rename to src/win32/yaze.res