| 14 | | # if there is already an exe file in this dir, back it up before |
| 15 | | # bringing in a new one, in case we need to run the old models |
| 16 | | if(-e "trunk.exe" ) |
| | 12 | # This gives the path to the executable version of the code |
| | 13 | # This will work if the directory structure was not changed from the |
| | 14 | # original download and if the executable was built in source |
| | 15 | # using g++ and the makefiles provided |
| | 16 | $exe = "../../source/cloudy.exe"; |
| | 17 | |
| | 18 | # these are the various compiler builds that occur in sys_XXX |
| | 19 | # directories below source. |
| | 20 | # uncomment the one that you built if you did not use the default |
| | 21 | # |
| | 22 | # sys_gcc |
| | 23 | $exe = "../../source/sys_gcc/cloudy.exe"; |
| | 24 | # $exe = "../../source/sys_gprof/cloudy.exe"; |
| | 25 | # $exe = "../../source/sys_IBMxSeries/cloudy.exe"; |
| | 26 | # $exe = "../../source/sys_icc/cloudy.exe"; |
| | 27 | # $exe = "../../source/sys_pgcc/cloudy.exe"; |
| | 28 | # $exe = "../../source/sys_pgccBounds/cloudy.exe"; |
| | 29 | |
| | 30 | # if this file does not exist we have problems |
| | 31 | if( ! -e "$exe" ) |
| 20 | | |
| 21 | | # the path to the executable version of the code |
| 22 | | |
| 23 | | #$exe = "c:/projects/cloudy/trunk/icl/release/cloudy_icl.exe"; |
| 24 | | #$exe = "c:/projects/cloudy/trunk/source/sys_icl/cloudy.exe"; |
| 25 | | |
| 26 | | #$exe = "c:/Projects/Cloudy/trunk/debug/trunk.exe"; |
| 27 | | $exe = "c:/projects/cloudy/trunk/release/trunk.exe"; |
| 28 | | |
| 29 | | #$exe = "c:/Projects/Cloudy/trunk/vs08/debug/vs08.exe"; |
| 30 | | #$exe = "c:/projects/cloudy/trunk/vs08/release/vs08.exe"; |
| 31 | | |
| 32 | | #$exe = "c:/projects/cloudy/newmole/debug/newmole.exe"; |
| 33 | | #$exe = "c:/projects/cloudy/newmole/icl/release/cloudy_icl.exe"; |
| 34 | | |
| 35 | | #$exe = "c:/projects/cloudy/trunk/gcc/release/cloudy_gcc.exe"; |
| 36 | | #$exe = "c:/projects/cloudy/trunk/source/sys_gcc/cloudy.exe"; |