diff options
| author | Gavin Andresen <[email protected]> | 2012-12-04 13:42:21 -0500 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2012-12-12 11:31:29 -0500 |
| commit | 59b8a869ab5c2b84ecd8f8624a955438b5f8679f (patch) | |
| tree | a6fe62f2d83d51ae84d1eccbd2d0e56c22e68205 | |
| parent | Merge pull request #2068 from Diapolo/CheckDiskSpace (diff) | |
| download | discoin-59b8a869ab5c2b84ecd8f8624a955438b5f8679f.tar.xz discoin-59b8a869ab5c2b84ecd8f8624a955438b5f8679f.zip | |
Compile c/objective-c code max compatiblity when RELEASE
| -rw-r--r-- | bitcoin-qt.pro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index e78318e28..3b2de5af3 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -24,6 +24,8 @@ UI_DIR = build contains(RELEASE, 1) { # Mac: compile for maximum compatibility (10.5, 32-bit) macx:QMAKE_CXXFLAGS += -mmacosx-version-min=10.5 -arch i386 -isysroot /Developer/SDKs/MacOSX10.5.sdk + macx:QMAKE_CFLAGS += -mmacosx-version-min=10.5 -arch i386 -isysroot /Developer/SDKs/MacOSX10.5.sdk + macx:QMAKE_OBJECTIVE_CFLAGS += -mmacosx-version-min=10.5 -arch i386 -isysroot /Developer/SDKs/MacOSX10.5.sdk !windows:!macx { # Linux: static link |