summaryrefslogtreecommitdiffstats
path: root/AssetLoader
diff options
context:
space:
mode:
authorassiduous <assiduous@diligentgraphics.com>2020-02-24 23:31:10 +0000
committerassiduous <assiduous@diligentgraphics.com>2020-02-24 23:31:10 +0000
commitcd56c1d97f6d52acf8915d20b159130251c0cecb (patch)
treee777d016c6b08352dfc3f821ae3610d794e97737 /AssetLoader
parentAsset loader: added option to enable draco using DRACO_PATH (diff)
downloadDiligentTools-cd56c1d97f6d52acf8915d20b159130251c0cecb.tar.gz
DiligentTools-cd56c1d97f6d52acf8915d20b159130251c0cecb.zip
Minor update to CMake asset loader
Diffstat (limited to 'AssetLoader')
-rw-r--r--AssetLoader/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/AssetLoader/CMakeLists.txt b/AssetLoader/CMakeLists.txt
index 1994ab3..90f10a0 100644
--- a/AssetLoader/CMakeLists.txt
+++ b/AssetLoader/CMakeLists.txt
@@ -53,7 +53,7 @@ elseif (DRACO_PATH)
target_include_directories(Diligent-AssetLoader PRIVATE "${DRACO_PATH}/include")
target_compile_definitions(Diligent-AssetLoader PRIVATE TINYGLTF_ENABLE_DRACO)
else()
- message("Unable to find draco library. Draco support will be disabled")
+ message(WARNING "Unable to find draco library. Draco support will be disabled")
endif()
endif()