raylib/games/wave_collector/CMakeLists.txt
G3bE b7c0d5b6dd
Always use latest raylib version for cmake (#1123)
* Always use latest raylib version

* Always use latest raylib version

* Always use latest raylib version
2020-03-08 18:04:29 +01:00

17 lines
436 B
CMake

cmake_minimum_required(VERSION 2.6)
project(wave_collector)
# 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/")