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
In the Xcode project of the OSX example, the deployment target is set to 10.11, which is the newest version of OSX. However, this means that only people with version 10.11 installed can compile the example. And I did not have 10.11, so I could not compile...
But this is completely unnecessary, because the project does not really use any new features of 10.11. I found that the deployment target can safely be lowered all the way to 10.7.
We can easily lower the version by first going to imgui/examples/apple_example/imguiex.xcodeproj/project.pbxproj, then going to line 369:
MACOSX_DEPLOYMENT_TARGET = 10.11;
and changing it to
MACOSX_DEPLOYMENT_TARGET = 10.7;
and then we also need to go to line 392:
MACOSX_DEPLOYMENT_TARGET = 10.11;
and change it to
MACOSX_DEPLOYMENT_TARGET = 10.7;
so by making the above two changes, we can easily lower the version.
The text was updated successfully, but these errors were encountered:
In the Xcode project of the OSX example, the deployment target is set to 10.11, which is the newest version of OSX. However, this means that only people with version 10.11 installed can compile the example. And I did not have 10.11, so I could not compile...
But this is completely unnecessary, because the project does not really use any new features of 10.11. I found that the deployment target can safely be lowered all the way to 10.7.
We can easily lower the version by first going to
imgui/examples/apple_example/imguiex.xcodeproj/project.pbxproj
, then going to line 369:and changing it to
and then we also need to go to line 392:
and change it to
so by making the above two changes, we can easily lower the version.
The text was updated successfully, but these errors were encountered: