ronnie
2022-10-23 eadd9db01b24ccde96a129dafa989d4ec436cdfd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/bash
# Creates eclipse .project file
 
pushd ../../.. > /dev/null
sed -e "s,SRC_ROOT_DIR,$PWD," <<- EOF > packages/apps/Calendar/.project
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
   <name>CalendarAndroid</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>
   <linkedResources>
       <link>
           <name>src_ex_common</name>
           <type>2</type>
           <location>SRC_ROOT_DIR/frameworks/ex/common/java</location>
       </link>
       <link>
           <name>src_opt_calendar</name>
           <type>2</type>
           <location>SRC_ROOT_DIR/frameworks/opt/calendar/src</location>
       </link>
   </linkedResources>
</projectDescription>
EOF
popd > /dev/null