mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-06 06:34:35 +00:00
cmake: on Apple, check for presence of an OBJC compiler
This commit is contained in:
parent
04bcc910e9
commit
61297f703a
2 changed files with 8 additions and 0 deletions
|
|
@ -110,6 +110,13 @@ else()
|
|||
endif()
|
||||
endif()
|
||||
|
||||
if(APPLE)
|
||||
check_language(OBJC)
|
||||
if(NOT CMAKE_OBJC_COMPILER)
|
||||
message(WARNING "Cannot find working OBJC compiler.")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(CMAKE_VERSION VERSION_LESS 3.13.0)
|
||||
macro(target_link_directories _TARGET _SCOPE)
|
||||
link_directories(${ARGN})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue