summaryrefslogtreecommitdiffstats
path: root/AssetLoader
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-11-19 17:11:59 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-11-19 17:11:59 +0000
commitac5c96e4153d059ad76174db83522641bb4b2b9f (patch)
treec3103e3e7f37b08794c2779a7a44d0bf231006d5 /AssetLoader
parentUpdated install fodler structure (diff)
downloadDiligentTools-ac5c96e4153d059ad76174db83522641bb4b2b9f.tar.gz
DiligentTools-ac5c96e4153d059ad76174db83522641bb4b2b9f.zip
Added install instructions
Diffstat (limited to 'AssetLoader')
-rw-r--r--AssetLoader/CMakeLists.txt4
-rw-r--r--AssetLoader/interface/GLTFLoader.h8
2 files changed, 8 insertions, 4 deletions
diff --git a/AssetLoader/CMakeLists.txt b/AssetLoader/CMakeLists.txt
index b3d78c7..822787b 100644
--- a/AssetLoader/CMakeLists.txt
+++ b/AssetLoader/CMakeLists.txt
@@ -44,3 +44,7 @@ PRIVATE
set_target_properties(Diligent-AssetLoader PROPERTIES
FOLDER DiligentTools
)
+
+if(INSTALL_DILIGENT_TOOLS)
+ install_tools_lib(Diligent-AssetLoader)
+endif()
diff --git a/AssetLoader/interface/GLTFLoader.h b/AssetLoader/interface/GLTFLoader.h
index 3544da5..f99cdea 100644
--- a/AssetLoader/interface/GLTFLoader.h
+++ b/AssetLoader/interface/GLTFLoader.h
@@ -26,10 +26,10 @@
#include <vector>
#include <memory>
-#include "RefCntAutoPtr.h"
-#include "RenderDevice.h"
-#include "DeviceContext.h"
-#include "AdvancedMath.h"
+#include "../../../DiligentCore/Graphics/GraphicsEngine/interface/RenderDevice.h"
+#include "../../../DiligentCore/Graphics/GraphicsEngine/interface/DeviceContext.h"
+#include "../../../DiligentCore/Common/interface/RefCntAutoPtr.h"
+#include "../../../DiligentCore/Common/interface/AdvancedMath.h"
namespace tinygltf
{