mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-23 06:20:47 +00:00
Update tool and linking
This commit is contained in:
parent
540768c15b
commit
37bac6a8e9
4 changed files with 19 additions and 6 deletions
|
@ -61,7 +61,8 @@ SUBPROJECTS = \
|
|||
GormCore \
|
||||
GormPrefs \
|
||||
Palettes \
|
||||
Plugins
|
||||
Plugins \
|
||||
Tools
|
||||
|
||||
#
|
||||
# MAIN APP
|
||||
|
@ -192,8 +193,6 @@ Gorm_OBJC_FILES = \
|
|||
Gorm.m \
|
||||
main.m
|
||||
|
||||
# Gorm_ADDITIONAL_NATIVE_LIBS = m
|
||||
|
||||
-include GNUmakefile.preamble
|
||||
-include GNUmakefile.local
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#import <Foundation/NSObject.h>
|
||||
#import <AppKit/NSApplication.h>
|
||||
|
||||
@interface AppDelegate : NSObject
|
||||
@interface AppDelegate : NSObject <NSApplicationDelegate>
|
||||
@end
|
||||
|
|
|
@ -1,4 +1,11 @@
|
|||
#import "AppDelegate.h"
|
||||
#import <Foundation/NSNotification.h>
|
||||
|
||||
@implementation AppDelegate
|
||||
|
||||
- (void) applicationDidFinishLaunching: (NSNotification *)n
|
||||
{
|
||||
NSLog(@"== gormtool");
|
||||
}
|
||||
|
||||
@end
|
||||
|
|
|
@ -11,12 +11,18 @@ gormtool_HEADER_FILES =
|
|||
gormtool_OBJC_FILES = main.m AppDelegate.m
|
||||
|
||||
ADDITIONAL_TOOL_LIBS = \
|
||||
-lGormObjCHeaderParser \
|
||||
-lGormPrefs \
|
||||
-lGormCore \
|
||||
-IInterfaceBuilder \
|
||||
-IGorm \
|
||||
-lgnustep-base \
|
||||
-lgnustep-gui
|
||||
|
||||
ADDITIONAL_LIB_DIRS = -L../../GormCore/obj -L../../InterfaceBuilder/obj
|
||||
ADDITIONAL_LIB_DIRS = -L../../GormCore/obj \
|
||||
-L../../InterfaceBuilder/obj \
|
||||
-L../../GormPrefs/obj \
|
||||
-L../../GormObjCHeaderParser/obj
|
||||
|
||||
ADDITIONAL_INCLUDE_DIRS = -I../../
|
||||
|
||||
-include GNUmakefile.preamble
|
||||
|
|
Loading…
Reference in a new issue