Statistics
| Revision:

svn-gvsig-desktop / tags / v2_0_0_Build_2027 / build / projects / gvsig-natives / prepare-all-platforms.sh @ 35381

History | View | Annotate | Download (406 Bytes)

1
#!/bin/sh
2

    
3
# Remove everything and start clean
4
mvn clean
5

    
6
# Get linux i386 dependencies
7
export MAVEN_OPTS='-Xmx384M -XX:MaxPermSize=64m -Dnative-classifier=linux-all-gcc4-i386-dynamic'
8
mvn -P linux-profile,\!windows-profile compile
9

    
10
# Get windows i386 dependencies
11
export MAVEN_OPTS='-Xmx384M -XX:MaxPermSize=64m -Dnative-classifier=win-nt-vs8-i386-dynamic'
12
mvn -P \!linux-profile,windows-profile compile
13