mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2025-06-19 11:16:37 +02:00
initial import, >900commits predate this
This commit is contained in:
13
external/stb/CMakeLists.txt
vendored
Normal file
13
external/stb/CMakeLists.txt
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
cmake_minimum_required(VERSION 3.2 FATAL_ERROR)
|
||||
|
||||
project(stb CXX)
|
||||
|
||||
add_library(stb INTERFACE)
|
||||
target_include_directories(stb 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_perlin "stb/stb_perlin.h" "stb_perlin.cpp")
|
||||
target_link_libraries(stb_perlin stb)
|
||||
|
1
external/stb/stb
vendored
Submodule
1
external/stb/stb
vendored
Submodule
Submodule external/stb/stb added at b42009b3b9
3
external/stb/stb_image.cpp
vendored
Normal file
3
external/stb/stb_image.cpp
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
#define STB_IMAGE_IMPLEMENTATION
|
||||
#include "stb/stb_image.h"
|
||||
|
3
external/stb/stb_perlin.cpp
vendored
Normal file
3
external/stb/stb_perlin.cpp
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
#define STB_PERLIN_IMPLEMENTATION
|
||||
#include "stb/stb_perlin.h"
|
||||
|
Reference in New Issue
Block a user