mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-22 19:31:56 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/branches/UNSTABLE_0_4@18089 72102866-910b-0410-8b05-ffd578937521
32 lines
625 B
Objective-C
32 lines
625 B
Objective-C
/*
|
|
* PCProject+ComponentHandling.m created by probert on 2002-02-10 09:50:56 +0000
|
|
*
|
|
* Project ProjectCenter
|
|
*
|
|
* Created with ProjectCenter - http://www.gnustep.org
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#include "PCProject+ComponentHandling.h"
|
|
#include "PCDefines.h"
|
|
#include "PCProject.h"
|
|
#include "PCProjectWindow.h"
|
|
#include "ProjectComponent.h"
|
|
#include "PCProjectLauncher.h"
|
|
#include "PCEditor.h"
|
|
|
|
@implementation PCProject (ComponentHandling)
|
|
|
|
- (void)runSelectedTarget:(id)sender
|
|
{
|
|
if (!projectLauncher)
|
|
{
|
|
projectLauncher = [[PCProjectLauncher alloc] initWithProject:self];
|
|
}
|
|
|
|
[projectLauncher run:sender];
|
|
}
|
|
|
|
@end
|
|
|