aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNadia Holmquist Pedersen <nadia@nhp.sh>2021-05-02 16:29:48 +0200
committerNadia Holmquist Pedersen <nadia@nhp.sh>2021-05-02 16:32:27 +0200
commitd6036f92254b53b67c0b32c9b02f9d6575f1953f (patch)
tree8aab4bc83b18f5759cb4906daf7292ac1e771d21 /src
parent63415f0eeb1d4a52e15f1c6bf90cebd4eb88bdc9 (diff)
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
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt5
1 files changed, 0 insertions, 5 deletions
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)