diff options
author | dl1ksv <dl1ksv@gmx.de> | 2014-01-27 17:49:21 +0100 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2014-01-27 11:32:57 -0800 |
commit | 30c7c0eba0e831822844001a5b7098639ff1eeb0 (patch) | |
tree | 0f6a46a3a7a0e489ce8c62e952a65701fc8d82ca | |
parent | c21cb67243a1425f7875521fc6115ee4f373c665 (diff) |
Changing search order for qwt
-rw-r--r-- | cmake/Modules/FindQwt.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/Modules/FindQwt.cmake b/cmake/Modules/FindQwt.cmake index a94055876a..0e2c13571f 100644 --- a/cmake/Modules/FindQwt.cmake +++ b/cmake/Modules/FindQwt.cmake @@ -21,7 +21,7 @@ find_path(QWT_INCLUDE_DIRS ) find_library (QWT_LIBRARIES - NAMES qwt qwt6 qwt-qt4 + NAMES qwt6 qwt qwt-qt4 HINTS ${CMAKE_INSTALL_PREFIX}/lib ${CMAKE_INSTALL_PREFIX}/lib64 @@ -56,4 +56,4 @@ if(QWT_FOUND) include ( FindPackageHandleStandardArgs ) find_package_handle_standard_args( Qwt DEFAULT_MSG QWT_LIBRARIES QWT_INCLUDE_DIRS ) MARK_AS_ADVANCED(QWT_LIBRARIES QWT_INCLUDE_DIRS) -endif(QWT_FOUND)
\ No newline at end of file +endif(QWT_FOUND) |