macOS-related CMake cleanups

* Remove useless explicitly specified link/include directories
* Don't pass -s or -pie to the linker as they aren't needed
This commit is contained in:
Nadia Holmquist Pedersen 2021-05-02 16:29:48 +02:00
parent 63415f0eeb
commit d6036f9225
2 changed files with 4 additions and 7 deletions

View File

@ -87,7 +87,9 @@ endif()
if (CMAKE_BUILD_TYPE STREQUAL Release)
add_compile_options(-O3)
add_link_options(-s)
if (NOT APPLE)
add_link_options(-s)
endif()
endif()
if (WIN32)
@ -99,7 +101,7 @@ if (BUILD_STATIC AND WIN32)
endif()
if (ENABLE_LTO)
if (WIN32)
if (WIN32 OR APPLE)
add_compile_options(-flto)
add_link_options(-flto)
else()

View File

@ -100,11 +100,6 @@ if (ENABLE_JIT)
endif()
endif()
if (APPLE)
target_include_directories(core PUBLIC /usr/local/include /opt/homebrew/include)
target_link_directories(core PUBLIC /usr/local/lib /opt/homebrew/lib)
endif()
if (ENABLE_OGLRENDERER)
find_package(PkgConfig REQUIRED)
pkg_check_modules(EPOXY REQUIRED epoxy)