forked from intel/hyperscan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeSettings.json
70 lines (70 loc) · 2.99 KB
/
CMakeSettings.json
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
{
"configurations": [
{
"name": "x64 debug",
"generator": "Ninja",
"configurationType": "Debug",
"inheritEnvironments": [ "msvc_x64_x64" ],
"buildRoot": "${projectDir}\\out\\build\\x64\\debug",
"installRoot": "${projectDir}\\out\\install\\x64\\debug",
"cmakeCommandArgs": "-DBUILD_STATIC_AND_SHARED=1",
"buildCommandArgs": "",
"ctestCommandArgs": ""
},
{
"name": "x64-avx2 debug",
"generator": "Ninja",
"configurationType": "Debug",
"inheritEnvironments": [ "msvc_x64_x64" ],
"buildRoot": "${projectDir}\\out\\build\\x64-avx2\\debug",
"installRoot": "${projectDir}\\out\\install\\x64-avx2\\debug",
"cmakeCommandArgs": "-DBUILD_STATIC_AND_SHARED=1 -DCMAKE_C_FLAGS=\"/arch:AVX2\" -DCMAKE_CXX_FLAGS=\"/arch:AVX2\"",
"buildCommandArgs": "",
"ctestCommandArgs": ""
},
{
"name": "x64 release",
"generator": "Ninja",
"configurationType": "Release",
"inheritEnvironments": [ "msvc_x64_x64" ],
"buildRoot": "${projectDir}\\out\\build\\x64\\release",
"installRoot": "${projectDir}\\out\\install\\x64\\release",
"cmakeCommandArgs": "-DBUILD_STATIC_AND_SHARED=1",
"buildCommandArgs": "",
"ctestCommandArgs": ""
},
{
"name": "x64-avx2 release",
"generator": "Ninja",
"configurationType": "Release",
"inheritEnvironments": [ "msvc_x64_x64" ],
"buildRoot": "${projectDir}\\out\\build\\x64-avx2\\release",
"installRoot": "${projectDir}\\out\\install\\x64-avx2\\release",
"cmakeCommandArgs": "-DBUILD_STATIC_AND_SHARED=1 -DCMAKE_C_FLAGS=\"/arch:AVX2\" -DCMAKE_CXX_FLAGS=\"/arch:AVX2\"",
"buildCommandArgs": "",
"ctestCommandArgs": ""
},
{
"name": "x64 minsizerel",
"generator": "Ninja",
"configurationType": "MinSizeRel",
"inheritEnvironments": [ "msvc_x64_x64" ],
"buildRoot": "${projectDir}\\out\\build\\x64\\minsizerel",
"installRoot": "${projectDir}\\out\\install\\x64\\minsizerel",
"cmakeCommandArgs": "-DBUILD_STATIC_AND_SHARED=1",
"buildCommandArgs": "",
"ctestCommandArgs": ""
},
{
"name": "x64-avx2 minsizerel",
"generator": "Ninja",
"configurationType": "MinSizeRel",
"inheritEnvironments": [ "msvc_x64_x64" ],
"buildRoot": "${projectDir}\\out\\build\\x64-avx2\\minsizerel",
"installRoot": "${projectDir}\\out\\install\\x64-avx2\\minsizerel",
"cmakeCommandArgs": "-DBUILD_STATIC_AND_SHARED=1 -DCMAKE_C_FLAGS=\"/arch:AVX2\" -DCMAKE_CXX_FLAGS=\"/arch:AVX2\"",
"buildCommandArgs": "",
"ctestCommandArgs": ""
}
]
}