limited ns pluging to Mac 10.8 and above #4168
This commit is contained in:
parent
7d5df54bd0
commit
4fcec1d217
|
@ -14,8 +14,14 @@
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
add_subdirectory(ns)
|
|
||||||
|
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
add_subdirectory(winmmjoy)
|
add_subdirectory(winmmjoy)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if (APPLE)
|
||||||
|
if (OSX_TARGET_MINOR GREATER 7)
|
||||||
|
add_subdirectory(ns)
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
add_subdirectory(ns)
|
||||||
|
endif()
|
||||||
|
|
Loading…
Reference in New Issue