2021-02-03 16:48:46 -07:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# If you see this file in an editor you may have to set the executable bit and execute it as script in a terminal
|
|
|
|
|
|
|
|
# This file will start the Mobile Atlas Creator with custom memory settings for
|
|
|
|
# the JVM. With the below settings the heap size (Available memory for the application)
|
2024-05-22 20:06:32 -06:00
|
|
|
# will range from 64 megabyte up to 1200 megabyte.
|
2021-02-03 16:48:46 -07:00
|
|
|
|
2024-05-22 20:06:32 -06:00
|
|
|
java -Xms64m -Xmx1200M -jar Mobile_Atlas_Creator.jar
|