mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-17 08:01:24 +00:00
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:
parent
2c703a94f5
commit
923416f666
2 changed files with 13 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue