Do not compile the ProjectCenter Debugger module on MinGW

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@27860 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2009-02-14 10:52:43 +00:00
parent 2c703a94f5
commit 923416f666
2 changed files with 13 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2009-02-14 Nicola Pero <nicola.pero@meta-innovation.com>
* Modules/GNUmakefile (SUBPROJECTS): Removed
Debuggers/ProjectCenter on MinGW since it doesn't compile there.
2009-02-12 23:03-EST Gregory John Casamento <greg_casamento@yahoo.com>
* Modules/Debuggers/ProjectCenter/PCDebuggerView.m: Correct

View file

@ -32,8 +32,14 @@ SUBPROJECTS = \
Projects/ResourceSet \
Projects/Tool \
Editors/ProjectCenter \
Parsers/ProjectCenter \
Debuggers/ProjectCenter
Parsers/ProjectCenter
# Do not compile the Debuggers/ProjectCenter module on MinGW since I'm
# told at the moment it doesn't even compile there.
ifneq ($(GNUSTEP_TARGET_OS), mingw32)
SUBPROJECTS += Debuggers/ProjectCenter
endif
include $(GNUSTEP_MAKEFILES)/aggregate.make