diff options
-rw-r--r-- | CMakeLists.txt | 6 | ||||
-rw-r--r-- | src/CMakeLists.txt | 5 |
2 files changed, 4 insertions, 7 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0c18164..66d0461 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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() diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index dc32b2a..c899745 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -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) |