source: OGRE/trunk/ogrenew/SDK/Win32/ogresdk_vc6.nsi @ 692

Revision 692, 979 bytes checked in by mattausch, 18 years ago (diff)

adding ogre 1.2 and dependencies

Line 
1!define TARGET_COMPILER_DESCRIPTION "Visual C++ 6"
2!define TARGET_COMPILER "VC6"
3!include ogresdk.nsh
4
5Section -Samples
6  ; We assume copysamples.sh has been run recently enough for these files to be available
7  SetOutPath "$INSTDIR\samples\scripts"
8  SetOverwrite try
9  File ".\Samples\scripts\*.dsp"
10  SetOutPath "$INSTDIR\samples\src"
11  SetOverwrite try
12  File ".\Samples\src\*.cpp"
13  SetOutPath "$INSTDIR\samples\include"
14  SetOverwrite try
15  File ".\Samples\include\*.h"
16
17  ; Refapp
18  SetOutPath "$INSTDIR\samples\refapp\scripts"
19  SetOverwrite try
20  File ".\samples\refapp\scripts\*.dsp"
21  SetOutPath "$INSTDIR\samples\refapp\src"
22  SetOverwrite try
23  File "..\..\ReferenceApplication\ReferenceAppLayer\src\*.cpp"
24  SetOutPath "$INSTDIR\samples\refapp\include"
25  SetOverwrite try
26  File "..\..\ReferenceApplication\ReferenceAppLayer\include\*.h"
27
28
29  SetOutPath "$INSTDIR\samples"
30  SetOverwrite try
31  File ".\Samples\Samples.dsw"
32  File ".\Samples\Samples.opt"
33
34
35SectionEnd
Note: See TracBrowser for help on using the repository browser.