From f6cc20940f0caceb12119abb4140b21c0b937116 Mon Sep 17 00:00:00 2001 From: John Hurliman Date: Wed, 30 Sep 2009 17:49:51 -0700 Subject: 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) --- Prebuild/TODO | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 Prebuild/TODO (limited to 'Prebuild/TODO') diff --git a/Prebuild/TODO b/Prebuild/TODO deleted file mode 100644 index 33b19a1..0000000 --- a/Prebuild/TODO +++ /dev/null @@ -1,43 +0,0 @@ -* monodev target should be able to detect whether the project is 1.x - or 2.x runtime - -* remove target which links ../project/foo.dll to each project's build - root - -* generate .config files - -* Fix the autotools target so that -sub generate_project_files { ... } -sub generate_solution_files { ... } -sub generate_multi_solution_files { ... } -sub generate_project { - ... - generate_project_files(); -} -sub generate_solution { - foreach $project ( @projects ){ - mkdir "$project/"; - pushd "$project/"; - generate_project(); - popd; - } - generate_solution_files(); -} -sub generate_multi_solution { - foreach $solution ( @solutions ){ - mkdir "$solution/"; - pushd "$solution/"; - generate_solution(); - popd; - } - generate_multi_solution_files(); -} - -if(numProjects == 1){ - generate_project(); -}elsif(numSolutions == 1){ - generate_solution(); -}else{ - generate_multi_solution(); -} - -- cgit v1.1