diff options
author | Kurt Zenker <kz@openoffice.org> | 2004-08-31 13:56:48 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2004-08-31 13:56:48 +0000 |
commit | e0e064be90305a56e7e15f1ed673cf4f0b91b206 (patch) | |
tree | 5e0097d3479346ac292c7de3721e3c4f054186da /configmgr | |
parent | 10353e2da5e93c868057d4aa416b4329243a4d65 (diff) |
INTEGRATION: CWS cfglogging (1.5.120); FILE MERGED
2004/08/27 09:30:50 jb 1.5.120.1: #i32454# Make configimport a non-Console app on Windows to avoid getting a popup console during setup.
Diffstat (limited to 'configmgr')
-rw-r--r-- | configmgr/source/cmdtools/makefile.mk | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/configmgr/source/cmdtools/makefile.mk b/configmgr/source/cmdtools/makefile.mk index f38f8781dd11..e1be487686db 100644 --- a/configmgr/source/cmdtools/makefile.mk +++ b/configmgr/source/cmdtools/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.5 $ +# $Revision: 1.6 $ # -# last change: $Author: vg $ $Date: 2003-04-01 13:31:19 $ +# last change: $Author: kz $ $Date: 2004-08-31 14:56:48 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -67,15 +67,21 @@ PRJNAME=configmgr TARGET=configtools TARGET1=configimport + +# Targettype should be CUI, but we need to be able to run the tools on Windows without a shell +.IF "$(GUI)" == "WNT" +TARGETTYPE=GUI +APP1NOSAL="TRUE" +.ELSE # "$(GUI)" == "WNT TARGETTYPE=CUI +.ENDIF # "$(GUI)" == "WNT + LIBTARGET=NO ENABLE_EXCEPTIONS=TRUE # --- Settings ----------------------------------------------------- -.INCLUDE : svpre.mk .INCLUDE : settings.mk -.INCLUDE : sv.mk # --- Files -------------------------------------------------------- CDEFS += -DDLL_VERSION=\"$(UPD)$(DLLPOSTFIX)\" |