Created
March 19, 2010 21:30
-
-
Save burnto/338213 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# You can get your own setup: | |
# >> import distutils | |
# >> distutils.sysconfig.get_config_vars() | |
macx { | |
QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.5 | |
QMAKE_MAC_SDK = /Developer/SDKs/MacOSX10.5.sdk # need this if building on PPC | |
CONFIG += x86 | |
LIBS += -framework \ | |
IOKit \ | |
-framework \ | |
CoreFoundation | |
#### START PYTHON INCLUDE #### | |
INCLUDEPATH += /Library/Frameworks/Python.framework/Versions/Current/include/python2.6 | |
LIBS += -L/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/config/ -lpython2.6 | |
#### END PYTHON INCLUDE #### | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment