forked from minsuzhang/App-LabRecorder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json
More file actions
92 lines (92 loc) · 4.41 KB
/
Copy pathCMakePresets.json
File metadata and controls
92 lines (92 loc) · 4.41 KB
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
88
89
90
91
92
{
"version": 8,
"configurePresets": [
{
"name": "win-vs-debug",
"displayName": "Windows VS2022 Debug",
"generator": "Visual Studio 17 2022",
"architecture": { "value": "x64" },
"binaryDir": "${sourceDir}/out/build/${presetName}",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}",
"CMAKE_BUILD_TYPE": "Debug",
"LSL_INSTALL_ROOT": "C:/Users/pho/repos/EmotivEpoc/LSL_REPOS/LSL/liblsl/out/install/x64-Debug",
"QT_DIR": "L:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5",
"Qt5_DIR": "L:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5"
}
},
{
"name": "win-vs-release",
"displayName": "Windows VS2022 Release",
"generator": "Visual Studio 17 2022",
"architecture": { "value": "x64" },
"binaryDir": "${sourceDir}/out/build/${presetName}",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}",
"CMAKE_BUILD_TYPE": "Release",
"LSL_INSTALL_ROOT": "C:/Users/pho/repos/EmotivEpoc/LSL_REPOS/LSL/liblsl/out/install/x64-Debug",
"QT_DIR": "L:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5",
"Qt5_DIR": "L:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5"
}
},
{
"name": "win-vs-release-single",
"displayName": "Windows VS2022 Release (single-file exe)",
"generator": "Visual Studio 17 2022",
"architecture": { "value": "x64" },
"binaryDir": "${sourceDir}/out/build/${presetName}",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}",
"CMAKE_BUILD_TYPE": "Release",
"LSL_INSTALL_ROOT": "C:/Users/pho/repos/EmotivEpoc/LSL_REPOS/LSL/liblsl/out/install/x64-Debug",
"QT_DIR": "L:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5",
"Qt5_DIR": "L:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5",
"LABRECORDER_SINGLE_FILE_EXE": true,
"SEVENZIP_DIR": "C:/Users/pho/scoop/apps/7zip/current"
}
},
{
"name": "linux-gcc-release",
"displayName": "Linux GCC Release",
"generator": "Unix Makefiles",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}"
}
},
{
"name": "macos-release",
"displayName": "macOS Release",
"generator": "Xcode",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}",
"CMAKE_BUILD_TYPE": "Release",
"LSL_DIR": "/Users/pho/libs/labstreaminglayer/build/LSL/liblsl",
"LSL_INSTALL_ROOT": "/Users/pho/libs/labstreaminglayer/build/LSL/liblsl/out/install/x64-Debug",
"QT_DIR": "/usr/local/lib/cmake/Qt6",
"Qt6_DIR": "/usr/local/lib/cmake/Qt6",
"MACDEPLOYQT_EXECUTABLE": "/usr/local/bin/macdeployqt",
"CPACK_GENERATOR": "TBZ2",
"Boost_IOSTREAMS_LIBRARY_RELEASE":"/usr/local/lib/libboost_iostreams.dylib",
"Boost_INCLUDE_DIR":"/usr/local/include",
"CMAKE_OSX_SYSROOT":"",
"CMAKE_OSX_DEPLOYMENT_TARGET":"12.4",
"CMAKE_CONFIGURATION_TYPES": "Debug;Release;MinSizeRel;RelWithDebInfo",
"LSL_WINVER": "0x0601",
"LABRECORDER_XDFZ": false,
"LSL_BUNDLED_BOOST": false,
"CMAKE_OSX_ARCHITECTURES": ""
}
}
],
"buildPresets": [
{ "name": "win-debug", "configurePreset": "win-vs-debug", "configuration": "Debug" },
{ "name": "win-release", "configurePreset": "win-vs-release", "configuration": "Release" },
{ "name": "win-release-single", "configurePreset": "win-vs-release-single", "configuration": "Release" },
{ "name": "linux-release", "configurePreset": "linux-gcc-release" },
{ "name": "macos-release", "configurePreset": "macos-release", "configuration": "Release" }
],
"testPresets": []
}