You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
537 B

# Setup the project and settings
project(wave_collector)
include("../../utils.cmake")
# Make sure raylib has been built
# TODO `build` directory should maybe be something else...
include_directories("../../build/release")
# Grab the screens
file(GLOB screen_sources "screens/*.c")
# Executable & linking
add_executable(wave_collector wave_collector.c ${screen_sources})
link_libraries_to_executable(wave_collector)
# Resources
# Copy all of the resource files to the destination
file(COPY "resources/" DESTINATION "resources/")