TODO 433 B

123456789101112131415161718192021
  1. * monodev target should be able to detect whether the project is 1.x
  2. or 2.x runtime
  3. * make an autotools install target for .exe files
  4. * Fix the autotools target so that
  5. if(numProjects == 1){
  6. for($projectDir){
  7. generate_a_project_configure_dot_ac()
  8. }
  9. }else{
  10. generate_a_solution_configure_dot_ac()
  11. foreach($project in $projectsList){
  12. mkdir $project/
  13. cd $project/
  14. generate_a_project_configure_dot_ac
  15. }
  16. }