You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
install Xcode up to 4.6 (not 5, because it drops the 10.7 SDK)
install the CTL (command line tools, e.g via preferences)
run cmake as follows:
mkdir build && cd build
cmake -DCMAKE_OSX_SYSROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk/ -DCMAKE_OSX_DEPLOYMENT_TARGET=10.7 -DCMAKE_BUILD_TYPE="Release" ..
make # install if you wish
The text was updated successfully, but these errors were encountered:
Just built again yesterday with command line tools but without Xcode, so
you could omit that part too for ultra simplicity. But didn't you need qt?
Graham
On Sep 21, 2013 5:03 PM, "Loic Nageleisen" [email protected] wrote:
To build on OSX, one merely needs to
install Xcode up to 4.6 (not 5, because it drops the 10.7 SDK)
install the CTL (command line tools, e.g via preferences)
run cmake as follows:
mkdir build && cd build
cmake -DCMAKE_OSX_SYSROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk/ -DCMAKE_OSX_DEPLOYMENT_TARGET=10.7 -DCMAKE_BUILD_TYPE="Release" ..
make # install if you wish
—
Reply to this email directly or view it on GitHubhttps://github.com//issues/960
.
I just rewrote the OS X build instructions. They're about as simple as they can be, without taking shortcuts that will get people stuck..... Closing.
scztt
added
bug
Issues that relate to unexpected/unwanted behavior. Don't use for PRs.
comp: help
schelp documentation
enhancement
and removed
bug
Issues that relate to unexpected/unwanted behavior. Don't use for PRs.
labels
Mar 15, 2015
To build on OSX, one merely needs to
cmake
as follows:The text was updated successfully, but these errors were encountered: