mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-15 08:00:56 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@39783 72102866-910b-0410-8b05-ffd578937521
25 lines
747 B
Text
25 lines
747 B
Text
#
|
|
# Options common to bundles
|
|
#
|
|
ADDITIONAL_OBJCFLAGS +=
|
|
ADDITIONAL_CFLAGS +=
|
|
ADDITIONAL_CPPFLAGS +=
|
|
ADDITIONAL_INCLUDE_DIRS += -I../../../ -I../../../Headers
|
|
ADDITIONAL_LIB_DIRS += -L../../../Framework/ProjectCenter.framework/$(GNUSTEP_TARGET_LDIR)
|
|
|
|
BUNDLE_INSTALL_DIR = $(GNUSTEP_APPS)/ProjectCenter.app/Resources
|
|
$(BUNDLE_NAME)_STANDARD_INSTALL = no
|
|
|
|
DO_LIB_LINK=no
|
|
ifeq ($(GNUSTEP_TARGET_OS), mingw32)
|
|
DO_LIB_LINK=yes
|
|
else ifeq ($(GNUSTEP_TARGET_OS), mingw64)
|
|
DO_LIB_LINK=yes
|
|
else ifeq ($(GNUSTEP_TARGET_OS), cygwin)
|
|
DO_LIB_LINK=yes
|
|
endif
|
|
ifeq ($(DO_LIB_LINK), yes)
|
|
$(GNUSTEP_INSTANCE)_LIB_DIRS += -L../../../Framework/ProjectCenter.framework/$(GNUSTEP_TARGET_LDIR)
|
|
$(GNUSTEP_INSTANCE)_BUNDLE_LIBS += -lProjectCenter
|
|
endif
|
|
|