mirror of
https://github.com/libretro/pcsx2.git
synced 2024-12-04 08:17:28 +00:00
b6bc57b9e6
* Added Visual Studio 2010 Redistributables to the installer package. * Added some component descriptions. :) * Separated several things into nsh header files for organizational purposes git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3031 96395faa-99c1-11dd-bbfe-3dabce05a288
27 lines
770 B
Plaintext
27 lines
770 B
Plaintext
|
|
; =======================================================================
|
|
; Core Includes and Defines
|
|
; =======================================================================
|
|
|
|
!system 'SubWCRev.exe ..\pcsx2 templates\svnrev_pcsx2.nsh svnrev_pcsx2.nsh'
|
|
!include "svnrev_pcsx2.nsh"
|
|
|
|
!ifndef APP_VERSION
|
|
!define APP_VERSION "0.9.7"
|
|
!endif
|
|
|
|
!define APP_NAME "PCSX2 ${APP_VERSION} (r${SVNREV})"
|
|
!define APP_FILENAME "pcsx2-r${SVNREV}"
|
|
|
|
!define UNINSTALL_LOG "Uninst-${APP_FILENAME}"
|
|
|
|
!define INSTDIR_REG_ROOT "HKLM"
|
|
|
|
|
|
XPStyle on
|
|
|
|
; LZMA is the best, by far, so let's make sure it's always in use:
|
|
; (dictionaries larger than 24MB don't seem to help)
|
|
SetCompressor /SOLID lzma
|
|
SetCompressorDictSize 24
|