6 lines
137 B
CMake
Executable file
6 lines
137 B
CMake
Executable file
set(HEADERS
|
|
include/stb_image.h)
|
|
add_library(stb STATIC
|
|
src/stb.c
|
|
${HEADERS})
|
|
target_include_directories(stb PUBLIC include)
|