Mercurial > fife-parpg
annotate build/win32/update_project_files.bat @ 404:0ef7b088b3f8
*Editor plugin removed from trunk because it belongs to the light branch
author | helios2000@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Fri, 29 Jan 2010 14:31:47 +0000 |
parents | 605d13efc6f9 |
children | 6837a83471e0 |
rev | line source |
---|---|
388
605d13efc6f9
More fixes for the win32 batch files to remove the need to overwrite the users path and define variables. [t:429]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
384
diff
changeset
|
1 @echo off |
0
4a0efb7baf70
* Datasets becomes the new trunk and retires after that :-)
mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff
changeset
|
2 |
4a0efb7baf70
* Datasets becomes the new trunk and retires after that :-)
mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff
changeset
|
3 :: Delete old generated project files to ensure that they get generated from scratch again |
4a0efb7baf70
* Datasets becomes the new trunk and retires after that :-)
mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff
changeset
|
4 cd %_%\build_environments |
384
621b062e752d
Modified the code blocks project files to fit with the new build system. Code blocks now uses scons to build each of the configurations. The python configurations build properly but fail during link with a bunch of undefined references insides of the swig generated dll, not sure why. Also updated the win32-config.py so that it no longer relies on variables defined outside of itself, this was causing code blocks to not be able to build. Updated a couple of the batch scripts so they run properly.
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
378
diff
changeset
|
5 del code_blocks\fife.cbp |
0
4a0efb7baf70
* Datasets becomes the new trunk and retires after that :-)
mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff
changeset
|
6 del visual_studio_8\fife.vcproj |
4a0efb7baf70
* Datasets becomes the new trunk and retires after that :-)
mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff
changeset
|
7 del visual_studio_9\fife.vcproj |
4a0efb7baf70
* Datasets becomes the new trunk and retires after that :-)
mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff
changeset
|
8 |
388
605d13efc6f9
More fixes for the win32 batch files to remove the need to overwrite the users path and define variables. [t:429]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
384
diff
changeset
|
9 :: run scons |
605d13efc6f9
More fixes for the win32 batch files to remove the need to overwrite the users path and define variables. [t:429]
vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
384
diff
changeset
|
10 python applications\scons\scons.py -C ..\..\ projects |
0
4a0efb7baf70
* Datasets becomes the new trunk and retires after that :-)
mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff
changeset
|
11 |