blob: f6cefddfe9a86e8794d819b4c373695bdf18b6c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
cmake_minimum_required(VERSION 2.6)
project(just_do)
# Grab the screens
file(GLOB screen_sources "screens/*.c")
# Executable & linking
add_executable(${PROJECT_NAME} ${PROJECT_NAME}.c ${screen_sources})
if (NOT TARGET raylib)
find_package(raylib REQUIRED)
endif()
target_link_libraries(${PROJECT_NAME} raylib)
# Resources
# Copy all of the resource files to the destination
file(COPY "resources/" DESTINATION "resources/")
|