2018-07-28 17:08:41 +03:00
|
|
|
cmake_minimum_required(VERSION 2.6)
|
2017-07-23 02:45:36 +03:00
|
|
|
project(wave_collector)
|
|
|
|
|
|
|
|
# Grab the screens
|
|
|
|
file(GLOB screen_sources "screens/*.c")
|
|
|
|
|
|
|
|
# Executable & linking
|
2018-07-28 17:08:41 +03:00
|
|
|
add_executable(${PROJECT_NAME} ${PROJECT_NAME}.c ${screen_sources})
|
|
|
|
if (NOT TARGET raylib)
|
|
|
|
find_package(raylib 2.0 REQUIRED)
|
|
|
|
endif()
|
|
|
|
target_link_libraries(${PROJECT_NAME} raylib)
|
2017-07-23 02:45:36 +03:00
|
|
|
|
|
|
|
# Resources
|
|
|
|
# Copy all of the resource files to the destination
|
|
|
|
file(COPY "resources/" DESTINATION "resources/")
|