This commit is contained in:
Green Sky 2024-03-04 12:38:39 +01:00
parent c966fc6954
commit 28b92b0f4c
No known key found for this signature in database
3 changed files with 15 additions and 0 deletions

View File

@ -17,4 +17,5 @@ add_subdirectory(./imgui)
add_subdirectory(./stb)
add_subdirectory(./libwebp)
add_subdirectory(./qoi)

13
external/qoi/CMakeLists.txt vendored Normal file
View File

@ -0,0 +1,13 @@
cmake_minimum_required(VERSION 3.13...3.24 FATAL_ERROR)
project(qoi C CXX)
# do fetch or subtree
#add_library(stb INTERFACE)
#target_include_directories(stb SYSTEM INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}")
# static lib with impl
add_library(qoi "qoi.cpp")
#target_link_libraries(qoi stb)

1
external/qoi/qoi.cpp vendored Normal file
View File

@ -0,0 +1 @@
// TODO: include and impl