From 63e4506ce8c21392e99c428afe2b285f12f78c00 Mon Sep 17 00:00:00 2001 From: nathansmith117 Date: Wed, 14 Feb 2024 15:35:54 -0700 Subject: Added some assets --- CMakeLists.txt | 2 ++ assets/button_box.gif | Bin 0 -> 80166 bytes assets/penguin_lol.gif | Bin 0 -> 58532 bytes 3 files changed, 2 insertions(+) create mode 100644 assets/button_box.gif create mode 100644 assets/penguin_lol.gif diff --git a/CMakeLists.txt b/CMakeLists.txt index 040d5b7..b206b49 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,6 +16,8 @@ add_executable(${PROJECT_NAME} ${SRC_FILES}) target_include_directories(${PROJECT_NAME} PUBLIC include src) target_link_libraries(${PROJECT_NAME} raylib m) +file(COPY assets DESTINATION ${CMAKE_BINARY_DIR}) + # Checks if OSX and links appropriate frameworks (Only required on MacOS) if (APPLE) target_link_libraries(${PROJECT_NAME} "-framework IOKit") diff --git a/assets/button_box.gif b/assets/button_box.gif new file mode 100644 index 0000000..495a785 Binary files /dev/null and b/assets/button_box.gif differ diff --git a/assets/penguin_lol.gif b/assets/penguin_lol.gif new file mode 100644 index 0000000..0e64e92 Binary files /dev/null and b/assets/penguin_lol.gif differ -- cgit v1.2.3