mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-27 05:57:04 +00:00
XcodeCapp 4.0 is a major release of our beloved tool. In a nutshell it: - allows to manage multiple projects simultaneously - allows to follow operations and cancel them - has a per project Error and Warning reporting - supports capp_env as you can define additional paths and objj include path per project - much more things
28 lines
752 B
Objective-C
28 lines
752 B
Objective-C
//
|
|
// FindSourceFilesOperation.h
|
|
// XcodeCapp
|
|
//
|
|
// Created by Aparajita on 4/27/13.
|
|
// Copyright (c) 2013 Cappuccino Project. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "XCCAbstractOperation.h"
|
|
|
|
@class XCCCappuccinoProject;
|
|
@class XCCTaskLauncher;
|
|
|
|
extern NSString * const XCCNeedSourceToProjectPathMappingNotification;
|
|
extern NSString * const XCCSourcesFinderOperationDidStartNotification;
|
|
extern NSString * const XCCSourcesFinderOperationDidEndNotification;
|
|
|
|
|
|
@interface XCCSourcesFinderOperation : XCCAbstractOperation
|
|
{
|
|
NSString *searchPath;
|
|
}
|
|
|
|
- (instancetype)initWithCappuccinoProject:(XCCCappuccinoProject *)cappuccinoProject taskLauncher:(XCCTaskLauncher*)aTaskLauncher sourcePath:(NSString *)sourcePath;
|
|
|
|
@end
|