[Marble-commits] KDE/kdeedu/marble/src/plugins/runner
Niko Sams
niko.sams at gmail.com
Fri Aug 6 19:53:36 CEST 2010
SVN commit 1159987 by nsams:
new routing plugin using routino for offline routing
See: http://www.routino.org/
Usage:
copy generated nodes.mem, segments.mem, ways.mem and profiles.xml,into
~/.local/share/marble/maps/earth/routino and make the router binary callable in
PATH trough routino-router.
M +1 -0 CMakeLists.txt
A routino (directory)
M +5 -5 routino/CMakeLists.txt
D routino/GosmorePlugin.cpp
D routino/GosmorePlugin.h
D routino/GosmoreRunner.cpp
D routino/GosmoreRunner.h
A routino/RoutinoPlugin.cpp gosmore/GosmorePlugin.cpp#1157220 [License: LGPL]
A routino/RoutinoPlugin.h gosmore/GosmorePlugin.h#1157220 [License: LGPL]
A routino/RoutinoRunner.cpp gosmore/GosmoreRunner.cpp#1157220 [License: LGPL]
A routino/RoutinoRunner.h gosmore/GosmoreRunner.h#1157220 [License: LGPL]
--- trunk/KDE/kdeedu/marble/src/plugins/runner/CMakeLists.txt #1159986:1159987
@@ -8,4 +8,5 @@
# Routing
add_subdirectory( gosmore )
add_subdirectory( openrouteservice )
+add_subdirectory( routino )
add_subdirectory( yours )
--- trunk/KDE/kdeedu/marble/src/plugins/runner/routino/CMakeLists.txt #1157220:1159987
@@ -1,12 +1,12 @@
-PROJECT( GosmorePlugin )
+PROJECT( RoutinoPlugin )
INCLUDE_DIRECTORIES(
- ${CMAKE_CURRENT_SOURCE_DIR}/src/plugins/runner/gosmore
- ${CMAKE_BINARY_DIR}/src/plugins/runner/gosmore
+ ${CMAKE_CURRENT_SOURCE_DIR}/src/plugins/runner/routino
+ ${CMAKE_BINARY_DIR}/src/plugins/runner/routino
${QT_INCLUDE_DIR}
)
INCLUDE(${QT_USE_FILE})
-set( gosmore_SRCS GosmoreRunner.cpp GosmorePlugin.cpp )
+set( routino_SRCS RoutinoRunner.cpp RoutinoPlugin.cpp )
-marble_add_plugin( GosmorePlugin ${gosmore_SRCS} )
+marble_add_plugin( RoutinoPlugin ${routino_SRCS} )
More information about the Marble-commits
mailing list