ApplicationDefinition.st
changeset 19628 253aa84211d2
parent 19593 046fa2a1c68f
child 19636 cfa029c95cfc
child 19956 d84806e01309
--- a/ApplicationDefinition.st	Thu Apr 21 15:38:36 2016 +0200
+++ b/ApplicationDefinition.st	Thu Apr 21 15:38:50 2016 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 2006 by eXept Software AG
               All Rights Reserved
@@ -963,6 +961,15 @@
     "Modified: / 15-05-2007 / 17:27:04 / cg"
 !
 
+bmake_dot_mak_mappings
+    ^ super bmake_dot_mak_mappings
+        at:'SKIP_IF_ARG_IS_APP_TARGET' put:'
+@IF "%%1" EQU "exe" exit /b 0
+@IF "%%1" EQU "setup" exit /b 0
+@IF "%%1" EQU "pluginSetup" exit /b 0
+'
+!
+
 buildDate_dot_h_mappings
     |d|
 
@@ -2240,6 +2247,31 @@
     "Created: / 15-05-2007 / 17:27:37 / cg"
 !
 
+bmake_dot_mak
+    "the template code for the bmake.bat file
+     Notice: duplicate %'s if they are needed as such in the generated file"
+
+    ^
+'@REM -------
+@REM make using Borland bcc32
+@REM type bmake, and wait...
+@REM do not edit - automatically generated from ProjectDefinition
+@REM -------
+@SET DEFINES=
+
+make.exe -N -f bc.mak  %%DEFINES%% %%*
+
+@IF "%%1" EQU "exe" exit /b 0
+@IF "%%1" EQU "setup" exit /b 0
+@IF "%%1" EQU "pluginSetup" exit /b 0
+
+%(SUBPROJECT_BMAKE_CALLS)
+'
+
+    "Created: / 17-08-2006 / 20:04:14 / cg"
+    "Modified: / 04-09-2012 / 11:46:22 / cg"
+!
+
 buildDate_dot_h
     "the template code for the buildDate.h file"
 
@@ -2883,7 +2915,7 @@
   WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "Publisher" "${PRODUCT_PUBLISHER}"
 SectionEnd
 
-LangString appOpen ${LANG_GERMAN}  "Mit %(PRODUCT_NAME) öffnen"
+LangString appOpen ${LANG_GERMAN}  "Mit %(PRODUCT_NAME) öffnen"
 LangString appOpen ${LANG_ENGLISH} "Open with %(PRODUCT_NAME)"
 
 LangString DESC_Section1 ${LANG_ENGLISH} "Program components of %(PRODUCT_NAME)"
@@ -2917,7 +2949,7 @@
 
 Function un.onInit
 !!insertmacro MUI_UNGETLANGUAGE
-  MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "Möchten Sie %(PRODUCT_NAME) und alle seine Komponenten deinstallieren?" IDYES +2
+  MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "Möchten Sie %(PRODUCT_NAME) und alle seine Komponenten deinstallieren?" IDYES +2
   Abort
 FunctionEnd