@@ -1 +1 @@
-Subproject commit 174bad7eb14d570dcca37097c25174b207c35a4a
+Subproject commit 1b6ed99944f741db13dedc24f3a0c31c6ce3e318
@@ -0,0 +1,7 @@
+include_directories("../../src")
+
+file(GLOB_RECURSE SOURCES *.cpp)
+add_executable(gltf_exporter_2 ${SOURCES})
+target_link_libraries(gltf_exporter_2 anki)
+installExecutable(gltf_exporter_2)
@@ -0,0 +1,4 @@
+// Copyright (C) 2009-2019, Panagiotis Christopoulos Charitos and contributors.
+// All rights reserved.
+// Code licensed under the BSD License.
+// http://www.anki3d.org/LICENSE
@@ -0,0 +1,11 @@
+#include "Importer.h"
+namespace anki
+{
+} // end namespace anki
@@ -0,0 +1,18 @@
+#pragma once
+#include <src/anki/AnKi.h>
+#include <tinygltf/tiny_gltf.h>
+class Importer
+};
+#include "Exporter.h"
+int main(int argc, char** argv)
+ return 0;
+}