File tree 3 files changed +10
-12
lines changed
3 files changed +10
-12
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ IF (WITH_POSTGRESQL)
63
63
SET (POSTGRESQL_PREFIX "" CACHE PATH "Path to POSTGRESQL base directory" )
64
64
ENDIF (WITH_POSTGRESQL)
65
65
66
- SET (WITH_INTERNAL_QWTPOLAR TRUE CACHE BOOL "Use internal built of QWTPolar " )
66
+ SET (WITH_INTERNAL_QWTPOLAR TRUE CACHE BOOL "Use internal built of QwtPolar " )
67
67
68
68
SET (WITH_SPATIALITE TRUE CACHE BOOL "Determines whether SPATIALITE support should be built" )
69
69
@@ -142,9 +142,9 @@ FIND_PACKAGE(Expat) # GPS importer plugin
142
142
FIND_PACKAGE (GSL) # Georeferencer
143
143
FIND_PACKAGE (GEOS)
144
144
FIND_PACKAGE (GDAL)
145
- FIND_PACKAGE (QWT REQUIRED)
145
+ FIND_PACKAGE (Qwt REQUIRED)
146
146
IF (NOT WITH_INTERNAL_QWTPOLAR)
147
- FIND_PACKAGE (QWTPOLAR REQUIRED)
147
+ FIND_PACKAGE (QwtPolar REQUIRED)
148
148
ENDIF (NOT WITH_INTERNAL_QWTPOLAR)
149
149
150
150
IF (NOT WITH_INTERNAL_SPATIALITE)
Original file line number Diff line number Diff line change 12
12
#
13
13
14
14
15
- #MESSAGE("Searching for QWT")
16
15
FIND_PATH (QWT_INCLUDE_DIR NAMES qwt.h PATHS
17
16
/usr/include
18
17
/usr/local/include
@@ -34,10 +33,10 @@ ENDIF (QWT_INCLUDE_DIR AND QWT_LIBRARY)
34
33
35
34
IF (QWT_FOUND)
36
35
IF (NOT QWT_FIND_QUIETLY)
37
- MESSAGE (STATUS "Found QWT : ${QWT_LIBRARY} " )
36
+ MESSAGE (STATUS "Found Qwt : ${QWT_LIBRARY} " )
38
37
ENDIF (NOT QWT_FIND_QUIETLY)
39
38
ELSE (QWT_FOUND)
40
39
IF (QWT_FIND_REQUIRED)
41
- MESSAGE (FATAL_ERROR "Could not find QWT " )
40
+ MESSAGE (FATAL_ERROR "Could not find Qwt " )
42
41
ENDIF (QWT_FIND_REQUIRED)
43
42
ENDIF (QWT_FOUND)
Original file line number Diff line number Diff line change 7
7
#
8
8
# Once run this will define:
9
9
#
10
- # QWTPOLAR_FOUND = system has QWTPolar lib
11
- # QWTPOLAR_LIBRARY = full path to the QWTPolar library
10
+ # QWTPOLAR_FOUND = system has QwtPolar lib
11
+ # QWTPOLAR_LIBRARY = full path to the QwtPolar library
12
12
# QWTPOLAR_INCLUDE_DIR = where to find headers
13
13
#
14
14
15
15
16
- #MESSAGE("Searching for QWTPolar")
17
16
FIND_PATH (QWTPOLAR_INCLUDE_DIR NAMES qwt_polar.h PATHS
18
17
/usr/include
19
18
/usr/local/include
20
19
"$ENV{LIB_DIR} /include"
21
20
"$ENV{INCLUDE} "
22
- PATH_SUFFIXES qwt-qt4 qwt qwt5
21
+ PATH_SUFFIXES qwtpolar
23
22
)
24
23
25
24
FIND_LIBRARY (QWTPOLAR_LIBRARY NAMES qwtpolar PATHS
@@ -35,10 +34,10 @@ ENDIF (QWTPOLAR_INCLUDE_DIR AND QWTPOLAR_LIBRARY)
35
34
36
35
IF (QWTPOLAR_FOUND)
37
36
IF (NOT QWTPOLAR_FIND_QUIETLY)
38
- MESSAGE (STATUS "Found QWTPolar : ${QWTPOLAR_LIBRARY} " )
37
+ MESSAGE (STATUS "Found QwtPolar : ${QWTPOLAR_LIBRARY} " )
39
38
ENDIF (NOT QWTPOLAR_FIND_QUIETLY)
40
39
ELSE (QWTPOLAR_FOUND)
41
40
IF (QWTPOLAR_FIND_REQUIRED)
42
- MESSAGE (FATAL_ERROR "Could not find QWTPolar " )
41
+ MESSAGE (FATAL_ERROR "Could not find QwtPolar " )
43
42
ENDIF (QWTPOLAR_FIND_REQUIRED)
44
43
ENDIF (QWTPOLAR_FOUND)
You can’t perform that action at this time.
0 commit comments