[692] | 1 | !define TARGET_COMPILER_DESCRIPTION "C::B + MingW + STLPort" |
---|
| 2 | !define TARGET_COMPILER "CBMingW_STLP" |
---|
| 3 | !define MINGW |
---|
| 4 | !include ogresdk.nsh |
---|
| 5 | !define STLPORT_PATH "..\..\..\stlport" |
---|
| 6 | |
---|
| 7 | Section -Samples |
---|
| 8 | ; We assume copysamples.sh has been run recently enough for these files to be available |
---|
| 9 | SetOutPath "$INSTDIR\samples\scripts" |
---|
| 10 | SetOverwrite try |
---|
| 11 | File ".\Samples\scripts\*_stlp.cbp" |
---|
| 12 | SetOutPath "$INSTDIR\samples\src" |
---|
| 13 | SetOverwrite try |
---|
| 14 | File ".\Samples\src\*.cpp" |
---|
| 15 | SetOutPath "$INSTDIR\samples\include" |
---|
| 16 | SetOverwrite try |
---|
| 17 | File ".\Samples\include\*.h" |
---|
| 18 | |
---|
| 19 | ; Refapp |
---|
| 20 | SetOutPath "$INSTDIR\samples\refapp\scripts" |
---|
| 21 | SetOverwrite try |
---|
| 22 | File ".\samples\refapp\scripts\*_stlp.cbp" |
---|
| 23 | SetOutPath "$INSTDIR\samples\refapp\src" |
---|
| 24 | SetOverwrite try |
---|
| 25 | File "..\..\ReferenceApplication\ReferenceAppLayer\src\*.cpp" |
---|
| 26 | SetOutPath "$INSTDIR\samples\refapp\include" |
---|
| 27 | SetOverwrite try |
---|
| 28 | File "..\..\ReferenceApplication\ReferenceAppLayer\include\*.h" |
---|
| 29 | |
---|
| 30 | |
---|
| 31 | SetOutPath "$INSTDIR\samples" |
---|
| 32 | SetOverwrite try |
---|
| 33 | File ".\Samples\Samples.workspace" |
---|
| 34 | |
---|
| 35 | |
---|
| 36 | SectionEnd |
---|
| 37 | |
---|
| 38 | Section -STLPort |
---|
| 39 | SetOutPath "$INSTDIR\stlport\stlport" |
---|
| 40 | SetOverwrite try |
---|
| 41 | File /r "$(STLPORT_PATH)\stlport\*.*" |
---|
| 42 | |
---|
| 43 | SetOutPath "$INSTDIR\bin\debug" |
---|
| 44 | SetOverwrite try |
---|
| 45 | File "$(STLPORT_PATH)\bin\stlportstlg.5.0.dll" |
---|
| 46 | SetOutPath "$INSTDIR\bin\release" |
---|
| 47 | SetOverwrite try |
---|
| 48 | File "$(STLPORT_PATH)\bin\stlport.5.0.dll" |
---|
| 49 | |
---|
| 50 | SetOutPath "$INSTDIR\stlport\lib" |
---|
| 51 | SetOverwrite try |
---|
| 52 | File "$(STLPORT_PATH)\lib\libstlport.5.0.dll.a" |
---|
| 53 | File "$(STLPORT_PATH)\lib\libstlportstlg.5.0.dll.a" |
---|
| 54 | |
---|
| 55 | SectionEnd |
---|