diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2024-04-25 18:59:51 +0300 |
---|---|---|
committer | Georgi Gerganov <ggerganov@gmail.com> | 2024-04-25 18:59:51 +0300 |
commit | fa0b4ad25208d5ec2df6b998ccb29b49b249e82c (patch) | |
tree | 26270ba91ae7c53ae22227bba8056dd9c6024752 | |
parent | d6e1d44f16e5580cf47f13325ff49960bf13ca37 (diff) |
cmake : remove obsolete ANDROID check
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 58a1805b..425100ff 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -43,12 +43,6 @@ else() set(LLAMA_METAL_DEFAULT OFF) endif() -if (CMAKE_SYSTEM_NAME MATCHES "ANDROID") - set(LLAMA_LLAMAFILE_DEFAULT OFF) -else() - set(LLAMA_LLAMAFILE_DEFAULT ON) -endif() - # general option(BUILD_SHARED_LIBS "build shared libraries" OFF) option(LLAMA_STATIC "llama: static link libraries" OFF) |