Author: gedmurphy
Date: Fri May 11 03:17:53 2007
New Revision: 26690
URL:
http://svn.reactos.org/svn/reactos?rev=26690&view=rev
Log:
fix script to include VDK and the default config file
Modified:
trunk/tools/RosTE/LICENSE.txt
trunk/tools/RosTE/RosTE.nsi
Modified: trunk/tools/RosTE/LICENSE.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/tools/RosTE/LICENSE.txt?rev=26690&…
==============================================================================
--- trunk/tools/RosTE/LICENSE.txt (original)
+++ trunk/tools/RosTE/LICENSE.txt Fri May 11 03:17:53 2007
@@ -1,16 +1,12 @@
- ReactOS Test Environment v0.1
+ == ReactOS Test Environment v0.1 ==
The components of the ReactOS Test Environment are released under
the following licenses:
ReactOS Test Environment installer and any accompanying data - GPLv2.
-
ReactOS QEmu Manager - GPLv2
-
QEmu - LGPLv2
-
KQEmu - GPLv2
-
VDK - GPLv2
The respective licenses are detailed below
Modified: trunk/tools/RosTE/RosTE.nsi
URL:
http://svn.reactos.org/svn/reactos/trunk/tools/RosTE/RosTE.nsi?rev=26690&am…
==============================================================================
--- trunk/tools/RosTE/RosTE.nsi (original)
+++ trunk/tools/RosTE/RosTE.nsi Fri May 11 03:17:53 2007
@@ -65,6 +65,7 @@
SetOutPath "$INSTDIR\GUI"
SetOverwrite ifnewer
File "${SOURCE_DIR}\GUI\QemuGUI.exe"
+ File "${SOURCE_DIR}\GUI\config.xml"
CreateDirectory "$SMPROGRAMS\RosTE"
CreateShortCut "$SMPROGRAMS\RosTE\RosTE.lnk"
"$INSTDIR\GUI\QemuGUI.exe"
CreateShortCut "$DESKTOP\RosTE.lnk" "$INSTDIR\GUI\QemuGUI.exe"
@@ -134,7 +135,17 @@
File "${SOURCE_DIR}\qemu-0.9.0-windows\License\README.TXT"
SectionEnd
-Section "InstallQemu" SEC03
+Section "Installvdk" SEC03
+ SetOutPath "$INSTDIR\VDK"
+ SetOverwrite ifnewer
+ File "${SOURCE_DIR}\vdk\COPYING.TXT"
+ File "${SOURCE_DIR}\vdk\README.TXT"
+ File "${SOURCE_DIR}\vdk\READMEJ.TXT"
+ File "${SOURCE_DIR}\vdk\vdk.exe"
+ File "${SOURCE_DIR}\vdk\vdk.sys"
+SectionEnd
+
+Section "InstallQemu" SEC04
SetOutPath "$INSTDIR\Kqemu"
SetOverwrite ifnewer
File "${SOURCE_DIR}\Kqemu\LICENSE"
@@ -190,6 +201,7 @@
RMDir /r /REBOOTOK "$SMPROGRAMS\RosTE"
RMDir /r /REBOOTOK "$INSTDIR\GUI"
RMDir /r /REBOOTOK "$INSTDIR\QEmu"
+ RMDir /r /REBOOTOK "$INSTDIR\VDK"
RMDir /r /REBOOTOK "$INSTDIR\Kqemu"
RMDir /r /REBOOTOK "$INSTDIR"