Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
These tests can only work when assertions are enabled
[simgrid.git] / buildtools / Cmake / Modules / FindPCRE.cmake
index 7a7e6c2..45eddfe 100644 (file)
@@ -2,7 +2,8 @@ find_library(PATH_PCRE_LIB
        NAMES pcre
     HINTS
     $ENV{LD_LIBRARY_PATH}
-    PATH_SUFFIXES lib/
+    $ENV{PCRE_LIBRARY_PATH}
+    PATH_SUFFIXES lib/ GnuWin32/lib
     PATHS
     /opt
     /opt/local
@@ -13,7 +14,8 @@ find_library(PATH_PCRE_LIB
 find_path(PATH_PCRE_H "pcre.h"
     HINTS
     $ENV{LD_LIBRARY_PATH}
-    PATH_SUFFIXES include/
+    $ENV{PCRE_LIBRARY_PATH}
+    PATH_SUFFIXES include/ GnuWin32/include
     PATHS
     /opt
     /opt/local
@@ -50,4 +52,7 @@ if(PATH_PCRE_LIB)
 message(STATUS "Looking for lib pcre - found")
 else(PATH_PCRE_LIB)
 message(STATUS "Looking for lib pcre - not found")
-endif(PATH_PCRE_LIB)
\ No newline at end of file
+endif(PATH_PCRE_LIB)
+
+mark_as_advanced(PATH_PCRE_H)
+mark_as_advanced(PATH_PCRE_LIB)
\ No newline at end of file