15 lines
417 B
CMake
15 lines
417 B
CMake
|
# Check stb path variable
|
||
|
if (NOT DEFINED STB_IMAGE_PATH)
|
||
|
message(FATAL_ERROR "You must set STB_IMAGE_PATH variable to the root directory of std-image repository.")
|
||
|
endif()
|
||
|
|
||
|
# Add library
|
||
|
add_library(stb-image INTERFACE IMPORTED)
|
||
|
# Add alias for it
|
||
|
add_library(stb::stb-image ALIAS stb-image)
|
||
|
# Setup header files
|
||
|
set_target_properties(stb-image PROPERTIES
|
||
|
INTERFACE_INCLUDE_DIRECTORIES
|
||
|
"${STB_IMAGE_PATH}"
|
||
|
)
|