libSDL2pp/exttests/cmake/CMakeLists.txt
Dmitry Marakasov bb595314ab Fix travis
2019-02-20 23:11:19 +03:00

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)