Initial commit.
This commit is contained in:
parent
dc531c12f2
commit
3ecff90412
|
@ -1,4 +1,5 @@
|
||||||
*.class
|
*.class
|
||||||
|
bin
|
||||||
|
|
||||||
# Mobile Tools for Java (J2ME)
|
# Mobile Tools for Java (J2ME)
|
||||||
.mtj.tmp/
|
.mtj.tmp/
|
||||||
|
@ -8,5 +9,15 @@
|
||||||
*.war
|
*.war
|
||||||
*.ear
|
*.ear
|
||||||
|
|
||||||
|
# Gradle Files #
|
||||||
|
.gradle
|
||||||
|
gradle.properties
|
||||||
|
|
||||||
|
# Eclipse Files #
|
||||||
|
.settings
|
||||||
|
.project
|
||||||
|
.cproject
|
||||||
|
.classpath
|
||||||
|
|
||||||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||||
hs_err_pid*
|
hs_err_pid*
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
Maintainer
|
||||||
|
----------
|
||||||
|
Will Hedgecock <will.hedgecock@fazecast.com>
|
||||||
|
|
||||||
|
Original Authors
|
||||||
|
----------------
|
||||||
|
Will Hedgecock <will.hedgecock@fazecast.com>
|
||||||
|
|
||||||
|
Contributors
|
||||||
|
------------
|
||||||
|
Will Hedgecock <will.hedgecock@fazecast.com>
|
|
@ -0,0 +1,20 @@
|
||||||
|
g++ make glibc-devel.x86_64 glibc-devel.i686 libstdc++-devel.x86_64 libstdc++-devel.i686
|
||||||
|
|
||||||
|
readlink -f /usr/bin/java : export everything up to /jre/... Ex: export JDK_HOME=/usr/lib/jvm/java-1.6.0-openjdk.x86_64
|
||||||
|
|
||||||
|
|
||||||
|
Make sure proper JDK version installed for backward compatibility, targeting Java 1.6 (JDK 1.6)
|
||||||
|
|
||||||
|
|
||||||
|
With necessary information, like for instance
|
||||||
|
|
||||||
|
On any OS, make sure JDK_HOME is set
|
||||||
|
|
||||||
|
On Windows, first, call C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/vcvarsall.bat" x64 or x86 before building
|
||||||
|
|
||||||
|
Etc.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
gradle eclipse
|
||||||
|
gradle build
|
Loading…
Reference in New Issue