diff options
author | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2025-05-20 10:32:12 +0200 |
---|---|---|
committer | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2025-05-21 13:47:04 +0200 |
commit | 6154a8f70daa6c21b70e07b192e5eee73d667239 (patch) | |
tree | 86fc44ed332e6e57a396e7c0831d5aa7e19e9712 /src | |
parent | 383c318846abb6e37f2efbd718f7770f77e46d61 (diff) | |
download | mana-6154a8f70daa6c21b70e07b192e5eee73d667239.tar.gz mana-6154a8f70daa6c21b70e07b192e5eee73d667239.tar.bz2 mana-6154a8f70daa6c21b70e07b192e5eee73d667239.tar.xz mana-6154a8f70daa6c21b70e07b192e5eee73d667239.zip |
macOS: Use system Guichan by default
Guichan 0.8.3 was released and can now be installed through Homebrew,
we don't need to rely on the Guichan submodule on macOS anymore.
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 23505dcd..4a6a93db 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -48,7 +48,7 @@ if(ENABLE_MANASERV) message(STATUS "Manaserv support enabled") endif() -if(APPLE OR NOT USE_SYSTEM_GUICHAN) +if(NOT USE_SYSTEM_GUICHAN) message(STATUS "Using Guichan submodule") set(GUICHAN_INCLUDE_DIR "../libs/guichan/include") set(GUICHAN_LIBRARIES guichan) |