diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ChangeLog | 4 | ||||
-rw-r--r-- | src/gui/gui.pro.in | 7 |
2 files changed, 10 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 39ae2ffd..5480f45c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2011-07-05 Gabriel Dos Reis <gdr@cs.tamu.edu> + + * gui/gui.pro.in [Mac OS X]: Don't build application bundle. + 2011-07-04 Gabriel Dos Reis <gdr@cs.tamu.edu> * graph/view2D/process2d.c: Include "cfuns.h? before other local diff --git a/src/gui/gui.pro.in b/src/gui/gui.pro.in index fe160438..cf2cce1e 100644 --- a/src/gui/gui.pro.in +++ b/src/gui/gui.pro.in @@ -1,4 +1,5 @@ -## Copyright (C) 2011 Gabriel Dos Reis +## Copyright (C) 2011 Gabriel Dos Reis. +## All rights reserved. ## Autoconf template file for the benefit of QMake ## Written by Gabriel Dos Reis. @@ -7,6 +8,10 @@ OA_LIB = -L@top_builddir@/@target@/lib -lOpenAxiom ## We build in release mode. CONFIG += release +## But, don't think we want an app bundle, yet. +macx { + CONFIG -= app_bundle +} ## We are building a GUI application. TEMPLATE = app |