8 lines
219 B
CMake
8 lines
219 B
CMake
|
|
# Copyright (C) 2018 Intel Corporation
|
||
|
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
#
|
||
|
|
|
||
|
|
set(TARGET stb_image)
|
||
|
|
|
||
|
|
add_library(${TARGET} STATIC stb_image.cpp)
|
||
|
|
target_include_directories(${TARGET} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|