Files
fall-fever/lib/stb/CMakeLists.txt
4VRDriver 146392ae22 Add ImGui in Debug Mode,
improvement of input handling
2020-09-10 15:51:12 +02:00

9 lines
201 B
CMake

# The only purpose of this file is to add stb to the include paths
# stb.c is a wrapper file
add_library(
stb STATIC
stb.c
)
target_include_directories(stb PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})