light/Dependencies/stb_image/CMakeLists.txt

14 lines
302 B
Text
Raw Normal View History

cmake_minimum_required(VERSION 3.14)
2021-09-09 19:59:53 +04:30
if (CMAKE_COMPILER_IS_GNUCC)
add_compile_options(-w)
endif()
if(MSVC)
add_compile_options(/MP)
add_compile_options(/W0)
endif()
file(GLOB STB_IMAGES_FILES true ABSOLUTE ${CMAKE_CURRENT_SOURCE_DIR}/*)
add_library(stb_image STATIC ${STB_IMAGES_FILES})