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 dbf7b60 commit 1b289f8Copy full SHA for 1b289f8
CMakeLists.txt
@@ -1,5 +1,14 @@
1
cmake_minimum_required (VERSION 3.10)
2
3
+if(NOT DILIGENT_CORE_FOUND)
4
+ message(FATAL_ERROR "DiligentCore module is not found. Please add DiligentCore module to the project before DiligentFX module.")
5
+endif()
6
+if(NOT DILIGENT_TOOLS_FOUND)
7
+ message(FATAL_ERROR "DiligentTools module is not found. Please add DiligentTools module to the project before DiligentFX module.")
8
9
+
10
+set(DILIGENT_FX_FOUND TRUE CACHE INTERNAL "DiligentFX module is found")
11
12
include(BuildUtils.cmake)
13
14
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
0 commit comments