mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-22 12:35:11 +00:00
Fix ObjC code linking
This commit is contained in:
parent
dc46c67d9f
commit
f56d771a4d
1 changed files with 5 additions and 0 deletions
|
@ -327,6 +327,11 @@ if (WIN32)
|
|||
endif()
|
||||
endif()
|
||||
|
||||
if (APPLE)
|
||||
find_library(COCOA Cocoa REQUIRED)
|
||||
list(APPEND DEPENDENCIES_LIBRARIES ${COCOA})
|
||||
endif()
|
||||
|
||||
if (NOT MSVC)
|
||||
set(WARNING_FLAGS -Wall -Wextra -Wno-unused-parameter)
|
||||
if (WARNINGS_ARE_ERRORS)
|
||||
|
|
Loading…
Reference in a new issue