Salome HOME
0023412: EDF 14194 - Conflict with native SWIG
authorvsr <vsr@opencascade.com>
Tue, 14 Feb 2017 10:16:35 +0000 (13:16 +0300)
committervsr <vsr@opencascade.com>
Tue, 14 Feb 2017 10:16:35 +0000 (13:16 +0300)
Workaround about stupid CMake bug that find_program performs search by iterating through names at first place instead of paths!!!

cmake/FindSalomeSWIG.cmake

index dac53f3cd0c8d2104113f85d21185cb38da7040e..4ebed737eae184c7d4058d465bd705628f3c315c 100644 (file)
 #
 #  !! Please read the generic detection procedure in SalomeMacros.cmake !!
 #
+
+# Workaround about stupid CMake bug that find_program performs search by iterating through names at first place
+# instead of paths!!!
+FIND_PROGRAM(SWIG_EXECUTABLE NAMES swig3.0 swig2.0 swig HINTS $ENV{SWIG_ROOT_DIR} PATH_SUFFIXES bin NO_CMAKE_SYSTEM_PATH NO_SYSTEM_ENVIRONMENT_PATH)
+
 SALOME_FIND_PACKAGE_AND_DETECT_CONFLICTS(SWIG SWIG_EXECUTABLE 2)
 MARK_AS_ADVANCED(SWIG_EXECUTABLE SWIG_VERSION)