]> Creatis software - bbtk.git/blobdiff - packages/std/Configure.cmake
*** empty log message ***
[bbtk.git] / packages / std / Configure.cmake
diff --git a/packages/std/Configure.cmake b/packages/std/Configure.cmake
new file mode 100644 (file)
index 0000000..cb28fec
--- /dev/null
@@ -0,0 +1,25 @@
+#===========================================================================
+# If the package is not a "core" bbtk package (included into the toolkit)
+# then we have to find (and use) bbtk 
+IF(NOT BBTK_CORE_PACKAGE)
+  #-------------------------------------------------------------------------
+  # Find and use the Black Box Toolkit
+  # Search BBTK
+  FIND_PACKAGE(BBTK)
+  # If bbtk found
+  IF(BBTK_FOUND)
+    INCLUDE(${BBTK_USE_FILE})
+    SET(BBTK_PACKAGE_LIBS 
+      ${BBTK_PACKAGE_LIBS}
+      ${BBTK_LIBRARIES})
+    MARK_AS_ADVANCED(BBTK_DIR)
+  ENDIF(BBTK_FOUND)
+  #-------------------------------------------------------------------------
+ENDIF(NOT BBTK_CORE_PACKAGE)
+#===========================================================================
+
+#===========================================================================
+# Include package configuration cmake script from bbtk dir
+INCLUDE(${BBTK_DIR}/BBTKConfigurePackage.cmake)
+#===========================================================================
+