aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Prebuild/TODO
diff options
context:
space:
mode:
authorJohn Hurliman2009-09-30 17:49:51 -0700
committerJohn Hurliman2009-09-30 17:49:51 -0700
commitf6cc20940f0caceb12119abb4140b21c0b937116 (patch)
treec05b5e499d57fd329cfcf509262157011c4e5863 /Prebuild/TODO
parent* Change the signature of the agent set appearance callback to prevent unnece... (diff)
downloadopensim-SC_OLD-f6cc20940f0caceb12119abb4140b21c0b937116.zip
opensim-SC_OLD-f6cc20940f0caceb12119abb4140b21c0b937116.tar.gz
opensim-SC_OLD-f6cc20940f0caceb12119abb4140b21c0b937116.tar.bz2
opensim-SC_OLD-f6cc20940f0caceb12119abb4140b21c0b937116.tar.xz
Taking the opportunity to delete unnecessary text files from the Prebuild folder (the license information is already in the appropriate place in the OpenSim distro)
Diffstat (limited to '')
-rw-r--r--Prebuild/TODO43
1 files changed, 0 insertions, 43 deletions
diff --git a/Prebuild/TODO b/Prebuild/TODO
deleted file mode 100644
index 33b19a1..0000000
--- a/Prebuild/TODO
+++ /dev/null
@@ -1,43 +0,0 @@
1* monodev target should be able to detect whether the project is 1.x
2 or 2.x runtime
3
4* remove target which links ../project/foo.dll to each project's build
5 root
6
7* generate .config files
8
9* Fix the autotools target so that
10sub generate_project_files { ... }
11sub generate_solution_files { ... }
12sub generate_multi_solution_files { ... }
13sub generate_project {
14 ...
15 generate_project_files();
16}
17sub generate_solution {
18 foreach $project ( @projects ){
19 mkdir "$project/";
20 pushd "$project/";
21 generate_project();
22 popd;
23 }
24 generate_solution_files();
25}
26sub generate_multi_solution {
27 foreach $solution ( @solutions ){
28 mkdir "$solution/";
29 pushd "$solution/";
30 generate_solution();
31 popd;
32 }
33 generate_multi_solution_files();
34}
35
36if(numProjects == 1){
37 generate_project();
38}elsif(numSolutions == 1){
39 generate_solution();
40}else{
41 generate_multi_solution();
42}
43