blob: bdd919708f0290e68ef2c129b8beb61da2994a22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Setup the project and settings
project(drturtle)
include("../../cmake/utils.cmake")
# Make sure raylib has been built
# TODO `build` directory should maybe be something else...
include_directories("../../build/release")
# Executable & linking
add_executable(drturtle 06_drturtle_final.c)
link_libraries_to_executable(drturtle)
# Resources
# Copy all of the resource files to the destination
file(COPY "resources/" DESTINATION "resources/")
|