user123
user123

Reputation: 2721

Using X11 in XCode

In my Xcode project, I want to use X11 framework. X11 is installed on my computer since when I add -L/usr/X11R6/lib to my makefile, my program runs without problems.

How can I link X11 framework to XCode?

Upvotes: 3

Views: 2162

Answers (1)

Paul R
Paul R

Reputation: 213059

There is no X11 framework - you just need to add the relevant headers and libraries to your project and Xcode will do the right thing.

Upvotes: 1

Related Questions