Add Eclipse-specific files

git-svn-id: https://connectbot.googlecode.com/svn/trunk/connectbot@287 df292f66-193f-0410-a5fc-6d59da041ff2
master
Kenny Root 2009-06-12 19:52:23 +00:00
parent ab7e1271f9
commit 828e5f5f85
8 changed files with 280 additions and 1 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
bin
gen

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>SSH</name>
<name>ConnectBot</name>
<comment></comment>
<projects>
</projects>

File diff suppressed because one or more lines are too long

8
tests/.classpath Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry combineaccessrules="false" kind="src" path="/connectbot"/>
<classpathentry kind="output" path="bin"/>
</classpath>

3
tests/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
bin
coverage
gen

33
tests/.project Normal file
View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>connectbot tests</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

View File

@ -0,0 +1,5 @@
#Wed Nov 14 13:33:03 CST 2007
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.compliance=1.5
org.eclipse.jdt.core.compiler.source=1.5

File diff suppressed because one or more lines are too long