From e75ad74d8ec6d54410f2872cdedb8d975969d121 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Fri, 4 Jul 2014 13:13:38 +0200 Subject: [PATCH] don't build python stuff on macos. --- CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7638b3f1f..be2eaedae 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -335,9 +335,11 @@ add_subdirectory(libethential) add_subdirectory(libevmface) add_subdirectory(liblll) add_subdirectory(libserpent) -if (PYTHON_LS) +if(NOT APPLE) +if(PYTHON_LS) add_subdirectory(libpyserpent) -endif () +endif() +endif() add_subdirectory(lllc) add_subdirectory(sc) if (NOT LANGUAGES)