mirror of
https://github.com/moparisthebest/k-9
synced 2024-12-23 16:18:50 -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:
parent
379a8dfa9e
commit
27e996b5f7
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
||||
local.properties
|
||||
bin
|
||||
gen
|
||||
.settings
|
||||
|
@ -102,7 +102,7 @@
|
||||
<echo>Creating library ${rclib} for remote control
|
||||
applications</echo>
|
||||
|
||||
<jar destfile="${rclib}" basedir="${out.classes.dir}" includes="${rcdir}" />
|
||||
<jar destfile="${rclib}" basedir="${out.classes.dir}" includes="${rcdir}" />
|
||||
</target>
|
||||
|
||||
<target name="upload" depends="clean,get-version,release">
|
||||
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user