aboutsummaryrefslogtreecommitdiff
path: root/windowsRuntimeInstaller
diff options
context:
space:
mode:
authorLenny Komow <lenny@lunarg.com>2017-02-10 10:44:37 -0700
committerLenny Komow <lenny@lunarg.com>2017-02-10 11:45:52 -0700
commit94b85c20deee459b665817f3528402e96e730b00 (patch)
tree5deb0718455b99e71d07196d5684e1c93090fe2b /windowsRuntimeInstaller
parent0a75eb1781344801bfc471a9cdc6ff5b30b5c657 (diff)
downloadusermoji-94b85c20deee459b665817f3528402e96e730b00.tar.xz
winsdk: Build runtime from RelWithDebInfo
Change-Id: I6d1484035de816d7bea0a3cad16fddf7b86cee24
Diffstat (limited to 'windowsRuntimeInstaller')
-rw-r--r--windowsRuntimeInstaller/InstallerRT.nsi18
1 files changed, 9 insertions, 9 deletions
diff --git a/windowsRuntimeInstaller/InstallerRT.nsi b/windowsRuntimeInstaller/InstallerRT.nsi
index 45c5f255..5601a9c6 100644
--- a/windowsRuntimeInstaller/InstallerRT.nsi
+++ b/windowsRuntimeInstaller/InstallerRT.nsi
@@ -436,23 +436,23 @@ Section
# 32-bit DLLs/EXEs destined for SysWOW64
##########################################
SetOutPath $WINDIR\SysWow64
- File /oname=${APILOWER}-$FileVersion.dll ..\build32\loader\Release\${APILOWER}-${VERSION_ABI_MAJOR}.dll
- File /oname=${APILOWER}info-$FileVersion.exe ..\build32\demos\Release\${APILOWER}info.exe
+ File /oname=${APILOWER}-$FileVersion.dll ..\build32\loader\RelWithDebInfo\${APILOWER}-${VERSION_ABI_MAJOR}.dll
+ File /oname=${APILOWER}info-$FileVersion.exe ..\build32\demos\RelWithDebInfo\${APILOWER}info.exe
StrCpy $1 30
Call CheckForError
# 64-bit DLLs/EXEs
##########################################
SetOutPath $WINDIR\System32
- File /oname=${APILOWER}-$FileVersion.dll ..\build\loader\Release\${APILOWER}-${VERSION_ABI_MAJOR}.dll
+ File /oname=${APILOWER}-$FileVersion.dll ..\build\loader\RelWithDebInfo\${APILOWER}-${VERSION_ABI_MAJOR}.dll
StrCpy $1 35
Call CheckForError
# vulkaninfo.exe
- File /oname=${APILOWER}info-$FileVersion.exe ..\build\demos\Release\${APILOWER}info.exe
+ File /oname=${APILOWER}info-$FileVersion.exe ..\build\demos\RelWithDebInfo\${APILOWER}info.exe
SetOutPath "$INSTDIR"
- File /oname=${APILOWER}info.exe ..\build\demos\Release\${APILOWER}info.exe
- File /oname=${APILOWER}info32.exe ..\build32\demos\Release\${APILOWER}info.exe
+ File /oname=${APILOWER}info.exe ..\build\demos\RelWithDebInfo\${APILOWER}info.exe
+ File /oname=${APILOWER}info32.exe ..\build32\demos\RelWithDebInfo\${APILOWER}info.exe
StrCpy $1 40
Call CheckForError
@@ -462,14 +462,14 @@ Section
# 32-bit DLLs/EXEs destined for SysWOW64
##########################################
SetOutPath $WINDIR\System32
- File /oname=${APILOWER}-$FileVersion.dll ..\build32\loader\Release\${APILOWER}-${VERSION_ABI_MAJOR}.dll
+ File /oname=${APILOWER}-$FileVersion.dll ..\build32\loader\RelWithDebInfo\${APILOWER}-${VERSION_ABI_MAJOR}.dll
StrCpy $1 50
Call CheckForError
# vulkaninfo.exe
- File /oname=${APILOWER}info-$FileVersion.exe ..\build32\demos\Release\${APILOWER}info.exe
+ File /oname=${APILOWER}info-$FileVersion.exe ..\build32\demos\RelWithDebInfo\${APILOWER}info.exe
SetOutPath "$INSTDIR"
- File /oname=${APILOWER}info ..\build32\demos\Release\${APILOWER}info.exe
+ File /oname=${APILOWER}info ..\build32\demos\RelWithDebInfo\${APILOWER}info.exe
StrCpy $1 55
Call CheckForError