2017-07-23 02:45:36 +03:00
|
|
|
# Setup the project and settings
|
|
|
|
project(drturtle)
|
|
|
|
|
2018-05-20 20:47:19 +03:00
|
|
|
include("../../cmake/utils.cmake")
|
2017-07-23 02:45:36 +03:00
|
|
|
|
|
|
|
|
|
|
|
# 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/")
|
|
|
|
|