Salome HOME
add FindSalomeBootstrap.cmake
authorDUC ANH HOANG <dh77501n@dsp1043837>
Thu, 27 Jul 2023 13:46:03 +0000 (15:46 +0200)
committerDUC ANH HOANG <dh77501n@dsp1043837>
Thu, 27 Jul 2023 13:46:03 +0000 (15:46 +0200)
cmake/FindSalomeBootstrap.cmake [new file with mode: 0644]

diff --git a/cmake/FindSalomeBootstrap.cmake b/cmake/FindSalomeBootstrap.cmake
new file mode 100644 (file)
index 0000000..69e09d9
--- /dev/null
@@ -0,0 +1,27 @@
+###########################################################################
+# Copyright (C) 2007-2022  CEA/DEN, EDF R&D, OPEN CASCADE
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+#
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+#
+
+EXECUTE_PROCESS(COMMAND python3 -c "import SalomeOnDemandTK; print(SalomeOnDemandTK.__version__)" OUTPUT_VARIABLE SALOMEBOOTSTRAP_VERSION OUTPUT_STRIP_TRAILING_WHITESPACE)
+IF(SALOMEBOOTSTRAP_VERSION)
+  SET(SALOMEBOOTSTRAP_FOUND TRUE)
+  MESSAGE(STATUS "Found Salome Bootstrap version ${SALOMEBOOTSTRAP_VERSION}")
+ELSE()
+  MESSAGE(FATAL_ERROR "Salome Bootstrap not found !!!")
+ENDIF()