mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-25 10:22:33 -05:00
CMake based build system.
Some people might find this handly
This commit is contained in:
committed by
Benjamin N. summerton
parent
0fc1323c80
commit
e173db19f7
18
games/drturtle/CMakeLists.txt
Normal file
18
games/drturtle/CMakeLists.txt
Normal file
@ -0,0 +1,18 @@
|
||||
# Setup the project and settings
|
||||
project(drturtle)
|
||||
|
||||
include("../../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/")
|
||||
|
||||
Reference in New Issue
Block a user