Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kpu/kenlm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Heafield <github@kheafield.com>2020-10-01 20:04:22 +0300
committerKenneth Heafield <github@kheafield.com>2020-10-01 20:04:22 +0300
commit1f054617eca14eae921e987b4b4eeb2b1d91de6b (patch)
treec6ee75c82f30227ac6fb138ef61c73aa9f826b56
parent8dc48f9ac6671bb6f1b9af35e35e3e228ce0086d (diff)
Disable interpolation by default on windows
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 642f6db..bec81d4 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -19,7 +19,7 @@ option(ENABLE_PYTHON "Build Python bindings" OFF)
# Eigen3 less than 3.1.0 has a race condition: http://eigen.tuxfamily.org/bz/show_bug.cgi?id=466
find_package(Eigen3 3.1.0 CONFIG)
include(CMakeDependentOption)
-cmake_dependent_option(ENABLE_INTERPOLATE "Build interpolation program (depends on Eigen3)" ON EIGEN3_FOUND OFF)
+cmake_dependent_option(ENABLE_INTERPOLATE "Build interpolation program (depends on Eigen3)" ON "EIGEN3_FOUND AND NOT WIN32" OFF)
if (FORCE_STATIC)
#presumably overkill, is there a better way?