mirror of
https://github.com/libSDL2pp/libSDL2pp.git
synced 2025-09-08 14:58:11 -04:00
10 lines
225 B
CMake
10 lines
225 B
CMake
project(libSDL2pp)
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
find_package(SDL2pp REQUIRED)
|
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
add_executable(cmake-ext-test ../../examples/sprites.cc)
|
|
target_link_libraries(cmake-ext-test SDL2pp::SDL2pp)
|