forked from open-ephys/GUI
-
Notifications
You must be signed in to change notification settings - Fork 0
OS X
open-ephys edited this page Feb 22, 2012
·
6 revisions
Getting it to work on Mac (OS X Lion, Xcode 4.2):
- Install the dependencies: libFTDI and FTGL
- Open the Xcode project in the Builds/MacOSX folder
- Add the following header search paths: /usr/local/include, /usr/local/include/freetype2
- Change the base SDK to Latest Mac OS X (Mac OS X 10.7)
- Change the architecture to 64-bit intel
- If you're using the Intan Demo Board, you'll need to run
$ sudo kextunload /System/Library/Extensions/FTDIUSBSerialDriver.kextin a bash terminal - Run the application
An Xcode ".xcodeproj" file is actually a folder. It must contain a text file called "project.pbxproj" in order to run. If you have two different versions of the project file that conflict when you try to merge them, Xcode won't be able to open it.
To fix the problem, you can just copy the raw project.pbxproj file from the repository, and place it into a blank folder. Now give the folder an .xcodeproj extension, and you're done.
There might be an easier way to do this, but this method definitely works.