ApplicationDefinition.st
branchjv
changeset 19636 cfa029c95cfc
parent 19610 a9a6940944a9
parent 19628 253aa84211d2
child 19661 35e3c222c479
--- a/ApplicationDefinition.st	Thu Apr 21 07:59:19 2016 +0100
+++ b/ApplicationDefinition.st	Fri Apr 22 08:34:39 2016 +0100
@@ -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|
 
@@ -2249,6 +2256,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"
 
@@ -2892,7 +2924,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)"
@@ -2926,7 +2958,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 "Mchten Sie %(PRODUCT_NAME) und alle seine Komponenten deinstallieren?" IDYES +2
   Abort
 FunctionEnd