aboutsummaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authornathansmith117 <thenathansmithsmith@gmail.com>2024-02-14 22:35:54 +0000
committernathansmith117 <thenathansmithsmith@gmail.com>2024-02-14 22:35:54 +0000
commit63e4506ce8c21392e99c428afe2b285f12f78c00 (patch)
tree152b6cfd86828e665a06d6108bc2ead9b59a1fda /CMakeLists.txt
parentc2d4a7939fe7f06384f9364e7877c618d9466484 (diff)
downloadPenguinYippies-63e4506ce8c21392e99c428afe2b285f12f78c00.tar.gz
PenguinYippies-63e4506ce8c21392e99c428afe2b285f12f78c00.tar.bz2
PenguinYippies-63e4506ce8c21392e99c428afe2b285f12f78c00.zip
Added some assets
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
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")