diff options
author | WaluigiWare64 <68647953+WaluigiWare64@users.noreply.github.com> | 2021-01-11 22:01:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-11 23:01:23 +0100 |
commit | c109235d0114a6b4367e75ac72ae3ee05856475d (patch) | |
tree | 203105a06e681c80bc689eea5cf309b3b33c3c77 | |
parent | b402cb19b208dba0fe9c3c530363f41710195d65 (diff) |
Also include Homebrew on ARM64 Mac location in CMake (#938)
-rw-r--r-- | src/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index bd1f31e..2bb1a44 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() |