0
0
mirror of https://github.com/thunderbird/thunderbird-android.git synced 2024-09-20 04:02:14 +02:00

Don't force Eclipse settings on users

Ant target to setup the Eclipse .settings directory with predefined settings
This commit is contained in:
Fiouz 2011-06-10 20:20:33 +02:00
parent 379a8dfa9e
commit 27e996b5f7
5 changed files with 9 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
local.properties local.properties
bin bin
gen gen
.settings

View File

@ -102,7 +102,7 @@
<echo>Creating library ${rclib} for remote control <echo>Creating library ${rclib} for remote control
applications</echo> applications</echo>
<jar destfile="${rclib}" basedir="${out.classes.dir}" includes="${rcdir}" /> <jar destfile="${rclib}" basedir="${out.classes.dir}" includes="${rcdir}" />
</target> </target>
<target name="upload" depends="clean,get-version,release"> <target name="upload" depends="clean,get-version,release">
@ -159,6 +159,7 @@
<echo> bump-version: ant -Dversion-name=3.123</echo> <echo> bump-version: ant -Dversion-name=3.123</echo>
<echo> Bumps the project version to 3.123,tags and commits it</echo> <echo> Bumps the project version to 3.123,tags and commits it</echo>
<echo> astyle: Make K-9's source look like it's supposed to</echo> <echo> astyle: Make K-9's source look like it's supposed to</echo>
<echo> eclipse: Apply template Eclipse settings</echo>
</target> </target>
@ -182,4 +183,10 @@
--> -->
<setup /> <setup />
<target name="eclipse" description="Apply template Eclipse settings">
<copy todir=".settings">
<fileset dir="tools/eclipse-settings"/>
</copy>
</target>
</project> </project>