Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Added gps tracker widget. This work was sponsored by http://gonavigo.ca/
. We thank them for their support git-svn-id: http://svn.osgeo.org/qgis/trunk@12692 c8812cc2-4d05-0410-92ff-de0c093fc19c
- Loading branch information
timlinux
committed
Jan 7, 2010
1 parent
e989c1e
commit 583d56b
Showing
45 changed files
with
10,825 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
## Once run this will define: | ||
## | ||
## QWT_FOUND = system has QWT lib | ||
## | ||
## QWT_LIBRARY = full path to the QWT library | ||
## | ||
## QWT_INCLUDE_DIR = where to find headers | ||
## | ||
## Tim Sutton | ||
|
||
|
||
#MESSAGE("Searching for QWT") | ||
FIND_PATH(QWT_INCLUDE_DIR qwt.h | ||
/usr/include | ||
/usr/include/qwt-qt4 | ||
/usr/local/include | ||
"$ENV{LIB_DIR}/include" | ||
"$ENV{LIB_DIR}/include/qwt" | ||
) | ||
FIND_LIBRARY(QWT_LIBRARY qwt PATHS | ||
/usr/lib | ||
/usr/local/lib | ||
"$ENV{LIB_DIR}/lib" | ||
) | ||
IF (NOT QWT_LIBRARY) | ||
# try using ubuntu lib naming | ||
FIND_LIBRARY(QWT_LIBRARY qwt-qt4 PATHS | ||
/usr/lib | ||
/usr/local/lib | ||
"$ENV{LIB_DIR}/lib" | ||
) | ||
ENDIF (NOT QWT_LIBRARY) | ||
|
||
IF (QWT_INCLUDE_DIR AND QWT_LIBRARY) | ||
SET(QWT_FOUND TRUE) | ||
ENDIF (QWT_INCLUDE_DIR AND QWT_LIBRARY) | ||
|
||
IF (QWT_FOUND) | ||
IF (NOT QWT_FIND_QUIETLY) | ||
MESSAGE(STATUS "Found QWT : ${QWT_LIBRARY}") | ||
ENDIF (NOT QWT_FIND_QUIETLY) | ||
ELSE (QWT_FOUND) | ||
IF (QWT_FIND_REQUIRED) | ||
MESSAGE(FATAL_ERROR "Could not find QWT") | ||
ENDIF (QWT_FIND_REQUIRED) | ||
ENDIF (QWT_FOUND) | ||
## Once run this will define: | ||
## | ||
## QWT_FOUND = system has QWT lib | ||
## | ||
## QWT_LIBRARY = full path to the QWT library | ||
## | ||
## QWT_INCLUDE_DIR = where to find headers | ||
## | ||
## Tim Sutton | ||
|
||
|
||
#MESSAGE("Searching for QWT") | ||
FIND_PATH(QWT_INCLUDE_DIR qwt.h | ||
/usr/include | ||
/usr/include/qwt-qt4 | ||
/usr/local/include | ||
"$ENV{LIB_DIR}/include" | ||
"$ENV{LIB_DIR}/include/qwt" | ||
) | ||
FIND_LIBRARY(QWT_LIBRARY qwt PATHS | ||
/usr/lib | ||
/usr/local/lib | ||
"$ENV{LIB_DIR}/lib" | ||
) | ||
IF (NOT QWT_LIBRARY) | ||
# try using ubuntu lib naming | ||
FIND_LIBRARY(QWT_LIBRARY qwt-qt4 PATHS | ||
/usr/lib | ||
/usr/local/lib | ||
"$ENV{LIB_DIR}/lib" | ||
) | ||
ENDIF (NOT QWT_LIBRARY) | ||
|
||
IF (QWT_INCLUDE_DIR AND QWT_LIBRARY) | ||
SET(QWT_FOUND TRUE) | ||
ENDIF (QWT_INCLUDE_DIR AND QWT_LIBRARY) | ||
|
||
IF (QWT_FOUND) | ||
IF (NOT QWT_FIND_QUIETLY) | ||
MESSAGE(STATUS "Found QWT : ${QWT_LIBRARY}") | ||
ENDIF (NOT QWT_FIND_QUIETLY) | ||
ELSE (QWT_FOUND) | ||
IF (QWT_FIND_REQUIRED) | ||
MESSAGE(FATAL_ERROR "Could not find QWT") | ||
ENDIF (QWT_FIND_REQUIRED) | ||
ENDIF (QWT_FOUND) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.