20 lines
326 B
CMake
20 lines
326 B
CMake
cmake_minimum_required(VERSION 3.21)
|
|
|
|
project(sprstk)
|
|
|
|
find_package(SDL3 REQUIRED)
|
|
|
|
add_library(sprstk
|
|
src/sprstk.cpp
|
|
|
|
src/gl.c
|
|
src/stb_image.c
|
|
)
|
|
|
|
target_include_directories(sprstk PUBLIC include PRIVATE src)
|
|
target_link_libraries(sprstk PUBLIC SDL3::SDL3)
|
|
|
|
if(PROJECT_IS_TOP_LEVEL)
|
|
add_subdirectory(examples)
|
|
endif()
|