Tesseract-Engine/vendor/stb/CMakeLists.txt
2024-12-24 23:19:49 -06:00

11 lines
194 B
CMake

cmake_minimum_required(VERSION 3.22)
project(stb)
file(GLOB_RECURSE SOURCES src/*.cpp)
add_library(stb)
target_include_directories(stb PUBLIC include)
target_sources(stb PRIVATE ${SOURCES})