1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-12-24 08:38:51 -05: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
bin
gen
.settings

View File

@ -159,6 +159,7 @@
<echo> bump-version: ant -Dversion-name=3.123</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> eclipse: Apply template Eclipse settings</echo>
</target>
@ -182,4 +183,10 @@
-->
<setup />
<target name="eclipse" description="Apply template Eclipse settings">
<copy todir=".settings">
<fileset dir="tools/eclipse-settings"/>
</copy>
</target>
</project>