mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-14 15:41:34 +00:00
* Framework/PCProject.m: (-assignProjectDict:): Fix setting projectPath to project dir (not to *.pcproj dir). * Framework/PCFilemanager.m: (-filesOfTypes:operation:multiple:title:accView:): Set allowed file types to panel of types is not nil. (-panel:isValidFilename): Use set allowed file types to panel. 2010-07-30 Sergii Stoian <stoyan255@ukr.net> * Framework/PCProject.m: (-subprojectWithName:): Pass to openProjectAt: subproject dir. openProjectat: can now handle this situation. * Framework/PCProjectManager.m: (-openProjectAt:): Implement handling of 'aPath' argument as project file and as project dir. Select *.pcproj if exists then try to load PC.project. (-openProject): Implement intelligent selection of project file when selected *.pcproj, PC.project or project dir. * Framework/PCFilemanager.m: (-filesOfTypes:operation:multiple:title:accView:): Remove code specific for opening projects (moved to PCProjectManager's openProject). (-panel:isValidFilename): Fix handling project file detection. (-filesWithExtension:atPath:includeDirs:): New method. Returns list of files with specified extension. Also returns dirs if 'includeDirs' set to YES. 2010-07-28 Sergii Stoian <stoyan255@ukr.net> * Framework/PCProject.m: (close:): Fix closing of subprojects. Remove subproject from Projectmanager's list of loaded projects. * Framework/PCLogController.m: (-init): Change font size to systemFontSize. 2010-07-24 Sergii Stoian <stoyan255@ukr.net> * Headers/ProjectCenter/PCProjectBuilder.m: * Framework/PCProjectBuilder.m: (cleanupAfterMake:): Added new argument (NSString) to method containing current status text. Before status text in project window always stated "...terminated". git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@31093 72102866-910b-0410-8b05-ffd578937521
56 lines
1.8 KiB
Text
56 lines
1.8 KiB
Text
# GNUmakefile.preamble
|
|
#
|
|
# Copyright (C) 2001-2005 Free Software Foundation, Inc.
|
|
#
|
|
# This file is part of GNUstep
|
|
#
|
|
# This library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Library General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2 of the License, or (at your option) any later version.
|
|
#
|
|
# This library is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Library General Public License for more details.
|
|
#
|
|
# If you are interested in a warranty or support for this source code,
|
|
# contact Scott Christley at scottc@net-community.com
|
|
#
|
|
# You should have received a copy of the GNU Library General Public
|
|
# License along with this library; see the file COPYING.LIB.
|
|
# If not, write to the Free Software Foundation,
|
|
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
#
|
|
# Flags dealing with compiling and linking
|
|
#
|
|
|
|
# Additional flags to pass to the preprocessor
|
|
ADDITIONAL_CPPFLAGS +=
|
|
|
|
# Additional flags to pass to the Objective-C compiler
|
|
ADDITIONAL_OBJCFLAGS += -DDEVELOPMENT
|
|
|
|
# Additional flags to pass to the C compiler
|
|
ADDITIONAL_CFLAGS +=
|
|
|
|
# Additional include directories the compiler should search
|
|
ADDITIONAL_INCLUDE_DIRS += -I./ -I./Headers
|
|
|
|
# Additional LDFLAGS to pass to the linker
|
|
ADDITIONAL_LDFLAGS +=
|
|
|
|
# Additional library directories the linker should search
|
|
ADDITIONAL_LIB_DIRS += -L./Framework/ProjectCenter.framework/$(GNUSTEP_TARGET_LDIR)
|
|
|
|
# Additional LDFLAGS to pass to the linker
|
|
ADDITIONAL_GUI_LIBS += -lProjectCenter
|
|
|
|
#
|
|
# Flags dealing with installing and uninstalling
|
|
#
|
|
|
|
# Additional directories to be created during installation
|
|
ADDITIONAL_INSTALL_DIRS +=
|
|
|