cmake: enable_language(OBJC) only for APPLE

This commit is contained in:
Ozkan Sezer 2022-02-05 18:50:00 +03:00
parent 3c9ac4489e
commit 9403543671
1 changed files with 3 additions and 1 deletions

View File

@ -101,7 +101,9 @@ if(${CMAKE_VERSION} VERSION_LESS "3.16.0")
endmacro()
else()
include(CheckOBJCSourceCompiles)
enable_language(OBJC)
if (APPLE)
enable_language(OBJC)
endif()
endif()
if(CMAKE_VERSION VERSION_LESS 3.13.0)