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-09-29 19:00:58 +0300
committerKenneth Heafield <github@kheafield.com>2020-09-29 19:01:13 +0300
commitb63a09cebd4b94a78c876ee250bcc3dc49491da6 (patch)
tree8d470a5a54c916aa86a002ddb07663b0f66bfaeb
parent12b818b1f5664c55275fbbbce7bdb25caa8313d3 (diff)
Revert BUILD_SHARED_LIBS part because it was breaking CI
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 4ee062e..642f6db 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.1)
-if (WIN32 AND BUILD_SHARED_LIBS)
+if (WIN32)
set(Boost_USE_STATIC_LIBS OFF)
# The auto-linking feature has problems with USE_STATIC_LIBS off, so we use
# BOOST_ALL_NO_LIB to turn it off.