limited ns pluging to Mac 10.8 and above #4168

This commit is contained in:
XinyuHou 2015-02-10 16:20:49 +00:00
parent 7d5df54bd0
commit 4fcec1d217
1 changed files with 8 additions and 2 deletions

View File

@ -14,8 +14,14 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
add_subdirectory(ns)
if (WIN32)
add_subdirectory(winmmjoy)
endif()
if (APPLE)
if (OSX_TARGET_MINOR GREATER 7)
add_subdirectory(ns)
endif()
else()
add_subdirectory(ns)
endif()