mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2024-11-11 09:43:02 +01:00
21 lines
644 B
CMake
21 lines
644 B
CMake
cmake_minimum_required(VERSION 3.2 FATAL_ERROR)
|
|
|
|
project(stb CXX)
|
|
|
|
add_library(stb INTERFACE)
|
|
target_include_directories(stb SYSTEM INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}")
|
|
|
|
add_library(stb_image "stb/stb_image.h" "stb_image.cpp")
|
|
target_link_libraries(stb_image stb)
|
|
|
|
add_library(stb_image_write "stb/stb_image_write.h" "stb_image_write.cpp")
|
|
target_link_libraries(stb_image_write stb)
|
|
|
|
# lel TODO: add back in when patent expires
|
|
#add_library(stb_perlin "stb/stb_perlin.h" "stb_perlin.cpp")
|
|
#target_link_libraries(stb_perlin stb)
|
|
|
|
add_library(stb_rect_pack "stb/stb_rect_pack.h" "stb_rect_pack.cpp")
|
|
target_link_libraries(stb_rect_pack stb)
|
|
|