mirror of
https://github.com/Floriansylvain/SFMLplayground.git
synced 2026-08-19 11:43:24 +02:00
18 lines
477 B
CMake
18 lines
477 B
CMake
cmake_minimum_required(VERSION 3.28)
|
|
project(CMakeSFMLProject LANGUAGES CXX)
|
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
|
|
|
|
include(FetchContent)
|
|
FetchContent_Declare(SFML
|
|
GIT_REPOSITORY https://github.com/SFML/SFML.git
|
|
GIT_TAG 3.0.1
|
|
GIT_SHALLOW ON
|
|
EXCLUDE_FROM_ALL
|
|
SYSTEM)
|
|
FetchContent_MakeAvailable(SFML)
|
|
|
|
add_executable(main src/main.cpp)
|
|
target_compile_features(main PRIVATE cxx_std_17)
|
|
target_link_libraries(main PRIVATE SFML::Graphics)
|