From a6aff4a48e6b75589a0b90db6d9b42ad97e41f39 Mon Sep 17 00:00:00 2001 From: DUC ANH HOANG Date: Thu, 27 Jul 2023 15:46:03 +0200 Subject: [PATCH] add FindSalomeBootstrap.cmake --- cmake/FindSalomeBootstrap.cmake | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 cmake/FindSalomeBootstrap.cmake diff --git a/cmake/FindSalomeBootstrap.cmake b/cmake/FindSalomeBootstrap.cmake new file mode 100644 index 0000000..69e09d9 --- /dev/null +++ b/cmake/FindSalomeBootstrap.cmake @@ -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() -- 2.30.2