We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8141bb9 commit 515551fCopy full SHA for 515551f
liboscar/CMakeLists.txt
@@ -19,6 +19,7 @@ find_package(tomlplusplus REQUIRED CONFIG)
19
find_package(stb REQUIRED CONFIG)
20
find_package(lunasvg REQUIRED CONFIG)
21
find_package(unordered_dense REQUIRED CONFIG)
22
+find_package(cgltf REQUIRED CONFIG)
23
find_package(Threads REQUIRED) # implicitly required by SDL3
24
25
# generate `oscarconfig.h`
@@ -52,6 +53,7 @@ PRIVATE
52
53
implot
54
stb
55
lunasvg::lunasvg
56
+ cgltf
57
Threads::Threads # implicitly required by SDL3
58
)
59
liboscar/Formats/GLTF.cpp
@@ -0,0 +1,5 @@
1
+#include "GLTF.h"
2
+
3
+#include <cgltf.h>
4
5
liboscar/Formats/GLTF.h
+#pragma once
+namespace osc
+{
+}
0 commit comments