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 b4f3ecf commit 01e1fbaCopy full SHA for 01e1fba
1 file changed
CMakeLists.txt
@@ -1,9 +1,12 @@
1
# ------------------------------------------------------------------------------
2
# Required EbsdLib and H5Support
3
4
-find_package(H5Support REQUIRED)
5
-
6
-find_package(EbsdLib REQUIRED)
+if(SIMPLNX_USE_LOCAL_EBSD_LIB)
+ include("${simplnx_SOURCE_DIR}/cmake/UseEbsdLib.cmake")
+else()
7
+ find_package(H5Support REQUIRED)
8
+ find_package(EbsdLib REQUIRED)
9
+endif()
10
11
12
# EbsdLib needs install rules for creating packages
0 commit comments