33 lines
620 B
Plaintext
33 lines
620 B
Plaintext
|
; The name of the installer
|
||
|
Name "Devcpp 6.0g CMake"
|
||
|
|
||
|
; To change from default installer icon:
|
||
|
;Icon "YOURPROGRAM.ico"
|
||
|
|
||
|
; The setup filename
|
||
|
OutFile "Dev6.0g CMake.exe"
|
||
|
|
||
|
; The default installation directory
|
||
|
InstallDir <<select>>
|
||
|
|
||
|
;--------------------------------
|
||
|
|
||
|
; Pages
|
||
|
|
||
|
Page directory
|
||
|
Page instfiles
|
||
|
;--------------------------------
|
||
|
Section "Run"
|
||
|
; Set output path to the installation directory.
|
||
|
SetOutPath $INSTDIR
|
||
|
File /r tools
|
||
|
File /r src
|
||
|
File /r include
|
||
|
File /r lib
|
||
|
File main.dev
|
||
|
File main.layout
|
||
|
File CMakeLists.txt
|
||
|
File Makefile.build
|
||
|
Exec 'cmd /c start "" "$instdir\main.dev"'
|
||
|
SectionEnd
|