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

CMakeSettings.json - github.com/marian-nmt/marian.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d29b7b30a1975e369a7d3c5e3e2bfb4b5281aeaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
  "environments": [
    {
      // Dependencies can be found automatically if you use vcpkg as your library manager.
      // In this case, please set the VCPKG_ROOT variable to the directory that contains the
      // vcpkg.exe. If you used CheckDeps.bat to install dependencies, by default this should be an
      // absolute path to marian-dev\vs\deps\vcpkg.
      // If you prefer managing yourself the dependencies, please fill in the other variables.
      "VCPKG_ROOT": "C:\\path\\to\\marian-dev\\vs\\deps\\vcpkg",

      // The MKL library can be automatically found by CMake. However, if you installed it in a
      // custom directory, please set the MKLROOT to this directory path.
      // Default is c:\Program Files (x86)\IntelSWTools\compilers_and_libraries\windows\mkl on
      // Windows, or /opt/intel/mkl on Linux
      "MKLROOT": "",

      // Boost and OpenSSL are required if you compile with COMPILE_SERVER=TRUE
      "BOOST_INCLUDEDIR": "",
      "BOOST_LIBRARYDIR": "",
      "OPENSSL_ROOT_DIR": ""
    }
  ],
  "configurations": [
    {
      "name": "Release",
      "generator": "Ninja",
      "configurationType": "Release",
      "inheritEnvironments": [ "msvc_x64_x64" ],
      "buildRoot": "${projectDir}\\build",
      "installRoot": "${projectDir}\\install",
      "cmakeCommandArgs": "",
      "buildCommandArgs": "-v",
      "ctestCommandArgs": "",
      "variables": [
        { "name": "CMAKE_TOOLCHAIN_FILE", "value": "${env.VCPKG_ROOT}\\scripts\\buildsystems\\vcpkg.cmake" },
        { "name": "VCPKG_TARGET_TRIPLET", "value": "x64-windows-static" },

        { "name": "OPENSSL_USE_STATIC_LIBS:BOOL", "value": "TRUE" },
        { "name": "OPENSSL_MSVC_STATIC_RT:BOOL", "value": "TRUE" },

        { "name": "COMPILE_CUDA:BOOL", "value": "TRUE" },
        { "name": "COMPILE_CPU:BOOL", "value": "TRUE" },
        { "name": "COMPILE_EXAMPLES:BOOL", "value": "FALSE" },
        { "name": "COMPILE_SERVER:BOOL", "value": "FALSE" },
        { "name": "COMPILE_TESTS:BOOL", "value": "FALSE" },

        { "name": "USE_CUDNN:BOOL", "value": "FALSE" },
        { "name": "USE_FBGEMM:BOOL", "value": "TRUE" },
        { "name": "USE_MPI:BOOL", "value": "FALSE" },
        { "name": "USE_NCCL:BOOL", "value": "FALSE" },
        { "name": "USE_SENTENCEPIECE:BOOL", "value": "TRUE" },
        { "name": "USE_STATIC_LIBS:BOOL", "value": "TRUE" }
      ]
    },
    {
      "name": "Debug",
      "generator": "Ninja",
      "configurationType": "Debug",
      "inheritEnvironments": [ "msvc_x64_x64" ],
      "buildRoot": "${projectDir}\\build\\debug",
      "installRoot": "${projectDir}\\install\\debug",
      "cmakeCommandArgs": "",
      "buildCommandArgs": "-v",
      "ctestCommandArgs": "",
      "variables": [
        { "name": "CMAKE_TOOLCHAIN_FILE", "value": "${env.VCPKG_ROOT}\\scripts\\buildsystems\\vcpkg.cmake" },
        { "name": "VCPKG_TARGET_TRIPLET", "value": "x64-windows-static" },

        { "name": "OPENSSL_USE_STATIC_LIBS:BOOL", "value": "TRUE" },
        { "name": "OPENSSL_MSVC_STATIC_RT:BOOL", "value": "TRUE" },

        { "name": "COMPILE_CUDA:BOOL", "value": "TRUE" },
        { "name": "COMPILE_CPU:BOOL", "value": "TRUE" },
        { "name": "COMPILE_EXAMPLES:BOOL", "value": "FALSE" },
        { "name": "COMPILE_SERVER:BOOL", "value": "FALSE" },
        { "name": "COMPILE_TESTS:BOOL", "value": "TRUE" },

        { "name": "USE_CUDNN:BOOL", "value": "FALSE" },
        { "name": "USE_FBGEMM:BOOL", "value": "TRUE" },
        { "name": "USE_MPI:BOOL", "value": "FALSE" },
        { "name": "USE_NCCL:BOOL", "value": "FALSE" },
        { "name": "USE_SENTENCEPIECE:BOOL", "value": "TRUE" },
        { "name": "USE_STATIC_LIBS:BOOL", "value": "TRUE" }
      ]
    }
  ]
}