2010-11-06 23:37:13 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# This file will start the Osm Extraction UI with custom memory settings for
|
|
|
|
# the JVM. With the below settings the heap size (Available memory for the application)
|
2011-06-24 12:36:37 +02:00
|
|
|
# will range from 64 megabyte up to 720 megabyte.
|
2010-11-06 23:37:13 +01:00
|
|
|
|
2011-06-24 12:36:37 +02:00
|
|
|
java -Djava.util.logging.config.file=logging.properties -Xms64M -Xmx720M -cp "./OsmAndMapCreator.jar:./lib/*.jar" net.osmand.swing.OsmExtractionUI
|