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

github.com/marian-nmt/marian.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Junczys-Dowmunt <marcinjd@microsoft.com>2018-12-07 08:55:12 +0300
committerMarcin Junczys-Dowmunt <marcinjd@microsoft.com>2018-12-07 08:55:12 +0300
commited25aa02fca90a1a748ac806064a5630c653183e (patch)
tree3e769dc5536e1766ac5034b9f6275c06a341f5d0
parent14578b16e18943935ee3d628fb01bc758600f5a5 (diff)
cleanup options
-rw-r--r--CMakeLists.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0c0cbbd8..498247e9 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -12,16 +12,16 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(BUILD_ARCH native CACHE STRING "Compile for this CPU architecture.")
# Custom CMake options
-option(COMPILE_EXAMPLES "Compile examples" OFF)
-option(COMPILE_TESTS "Compile tests" OFF)
-option(COMPILE_SERVER "Compile marian-server" ON)
option(COMPILE_CPU "Compile CPU version" ON)
option(COMPILE_CUDA "Compile GPU version" ON)
-option(USE_STATIC_LIBS "Compile GPU version" OFF)
+option(USE_SENTENCEPIECE "Download and compile SentencePiece" OFF)
+option(USE_STATIC_LIBS "Link statically against non-system libs" OFF)
option(USE_CUDNN "Use CUDNN library" OFF)
option(USE_NCCL "Use NCCL library" ON)
option(USE_MPI "Use MPI library" OFF)
-option(USE_SENTENCEPIECE "Download and compile SentencePiece" OFF)
+option(COMPILE_EXAMPLES "Compile examples" OFF)
+option(COMPILE_TESTS "Compile tests" OFF)
+option(COMPILE_SERVER "Compile marian-server" ON)
# Project versioning
find_package(Git QUIET)