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