-
Notifications
You must be signed in to change notification settings - Fork 31
1 Getting Started
davedufresne edited this page Nov 25, 2015
·
1 revision
- Download the framework to a suitable folder on your computer.
- Open the project or workspace you would like to use with SwiftParsec.
- Right-click in the Project navigator pane and choose 'Add Files to "My Project"...'.
- Navigate to the SwiftParsec folder, choose the "SwiftParsec.xcodeproj" file and click "Add".
- Click on your project in the Project navigator and choose the target you want to link against SwiftParsec.
- Under the "General" tab there is a section entitled "Linked Frameworks and Libraries". Click on the "+" button under that section and choose SwiftParsec in the popup window that will appear.
- In the scheme selector chose the SwiftParsec framework and hit ⌘+b to build the library.
- Set the active scheme to your app and you just have to
import SwiftParsec
where needed.