Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix finding QScintilla2 lib: prefer local installs over system
  • Loading branch information
dakcarto committed Jul 12, 2013
1 parent b45b7d6 commit 0653127
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmake/FindQScintilla.cmake
Expand Up @@ -28,17 +28,17 @@ ELSE(EXISTS QSCINTILLA_VERSION_STR)
NAMES qsciglobal.h
PATHS
"${QT_INCLUDE_DIR}/Qsci"
/usr/include
/usr/include/Qsci
/usr/local/include/Qsci
/usr/include/Qsci
/usr/include
)

FIND_LIBRARY(QSCINTILLA_LIBRARY
NAMES qscintilla2 libqscintilla2 libqscintilla2.dylib
PATHS
"${QT_LIBRARY_DIR}"
/usr/lib
/usr/local/lib
/usr/lib
)

IF(QSCINTILLA_LIBRARY)
Expand Down

0 comments on commit 0653127

Please sign in to comment.