Permalink
Browse files
CubicSDR: allow building back to OSX 10.7
Also make current builds cleaner via removing conflicting settings between MacPorts and the CMake script settings. Rev-bump just in case.
- Loading branch information
Showing
with
44 additions
and 4 deletions.
| @@ -0,0 +1,33 @@ | ||
| --- CMakeLists.txt.orig | ||
| +++ CMakeLists.txt | ||
| @@ -299,10 +299,10 @@ | ||
| ENDIF(UNIX AND NOT APPLE) | ||
|
|
||
| IF (APPLE) | ||
| - SET(CMAKE_OSX_DEPLOYMENT_TARGET, "10.9") | ||
| +# SET(CMAKE_OSX_DEPLOYMENT_TARGET, "10.9") | ||
|
|
||
| SET(LIQUID_LIB liquid) | ||
| - link_directories(/usr/local/lib) | ||
| +# link_directories(/usr/local/lib) | ||
| link_directories(/opt/local/lib) | ||
|
|
||
| ADD_DEFINITIONS( | ||
| @@ -706,7 +706,7 @@ | ||
| IF (APPLE) | ||
| ADD_DEFINITIONS( | ||
| -DHAVE_TYPE_TRAITS=1 | ||
| - -mmacosx-version-min=10.9 | ||
| +# -mmacosx-version-min=10.9 | ||
| ) | ||
| ENDIF(APPLE) | ||
|
|
||
| @@ -734,7 +734,7 @@ | ||
| ENDIF() | ||
|
|
||
| ADD_DEFINITIONS( | ||
| - -std=c++0x | ||
| +# -std=c++0x | ||
| -pthread | ||
| -D_OSX_APP_ | ||
| ) |