Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build and run instructions for cmdline #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,29 @@ Because I am no more maintaining the Freerouting project since 4 years and futur

I have attached the complete source code of the Freerouting project. Please feel free downloading and using the sources according to the GPLv3 license.

Building with javac
===================

On debian:

apt-get install javahelp2 icedtea-netx-common

( javac -classpath \
/usr/share/java/jh.jar:/usr/share/icedtea-web/netx.jar \
`find -type f -name "*.java"` && \
jar cfe ../fr.jar gui.MainApplication \
`find -type f \( -name "*.class" -o -name "*.properties" \)` )


From here:

https://s3.amazonaws.com/miscjunkandstuff/FreeRouting/build-instructions.txt

Running from commandline
========================

java -jar fr.jar -de $PATH_TO_YOUR_PROJECT/yourDsnFile.dsn


Introduction:
=============
Expand Down