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.
 
 
kraken-game/CMakeLists.txt

14 lines
235 B

cmake_minimum_required(VERSION 3.5)
project(kraken)
file(GLOB
sources
src/*.cpp)
add_executable(kraken.elf
${sources})
find_package(PkgConfig)
pkg_check_modules(SFML sfml-all)
target_link_libraries(kraken.elf ${SFML_LDFLAGS})