diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2013-05-16 11:54:34 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2013-05-16 11:54:34 (GMT) |
commit | 293f3cc7c9c6dfec76120714b33a458f54792545 (patch) | |
tree | 27c7fe37bd7967b6588916009fad93667a0e1da6 /scripts/installer64.nsi | |
parent | 26df5c446647aec19fa8a8615e61702950691746 (diff) |
enable mingw64 cross build (alpha stage)
Diffstat (limited to 'scripts/installer64.nsi')
-rw-r--r-- | scripts/installer64.nsi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/installer64.nsi b/scripts/installer64.nsi new file mode 100644 index 0000000..1b24c0c --- /dev/null +++ b/scripts/installer64.nsi @@ -0,0 +1,8 @@ +Function .onInit +${If} ${RunningX64} + StrCpy $InstDir $PROGRAMFILES64\OpenSCAD + SetRegView 64 +${Else} + Messagebox MB_OK "This is 64 bit OpenSCAD, your machine is 32 bits. Error." +${EndIf} +FunctionEnd |