10 lines
139 B
CMake
10 lines
139 B
CMake
project(stb_image)
|
|
|
|
add_library(${PROJECT_NAME}
|
|
./src/stb_image.c
|
|
)
|
|
|
|
target_include_directories(${PROJECT_NAME}
|
|
PUBLIC ./include
|
|
)
|