From c109235d0114a6b4367e75ac72ae3ee05856475d Mon Sep 17 00:00:00 2001 From: WaluigiWare64 <68647953+WaluigiWare64@users.noreply.github.com> Date: Mon, 11 Jan 2021 22:01:23 +0000 Subject: [PATCH] Also include Homebrew on ARM64 Mac location in CMake (#938) --- src/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index bd1f31ed..2bb1a448 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -101,8 +101,8 @@ if (ENABLE_JIT) endif() if (APPLE) - target_include_directories(core PUBLIC /usr/local/include) - target_link_directories(core PUBLIC /usr/local/lib) + 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) @@ -119,4 +119,4 @@ else() else() target_link_libraries(core) endif() -endif() \ No newline at end of file +endif()