-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCMakePresets.json
More file actions
43 lines (43 loc) · 1.44 KB
/
CMakePresets.json
File metadata and controls
43 lines (43 loc) · 1.44 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
{
"version": 3,
"configurePresets": [
{
"name": "flair-core2_64",
"displayName": "Flair core2_64 Cross-Compile",
"description": "Configures using the Flair core2_64 toolchain.",
"generator": "Unix Makefiles",
"binaryDir": "${sourceDir}/build_core2_64",
"cmakeExecutable": "/opt/robomap3/2.1.3/core2-64/sysroots/x86_64-pokysdk-linux/usr/bin/cmake",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_TOOLCHAIN_FILE": "/opt/robomap3/2.1.3/core2-64/toolchain.cmake"
}
},
{
"name": "flair-armv7a_neon",
"displayName": "Flair armv7a_neon Cross-Compile",
"description": "Configures using the Flair armv7a_neon toolchain.",
"generator": "Unix Makefiles",
"binaryDir": "${sourceDir}/build_armv7a_neon",
"cmakeExecutable": "/opt/robomap3/2.1.3/armv7a-neon/sysroots/x86_64-pokysdk-linux/usr/bin/cmake",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_TOOLCHAIN_FILE": "/opt/robomap3/2.1.3/armv7a-neon/toolchain.cmake"
}
}
],
"buildPresets": [
{
"name": "build-flair-core2_64",
"displayName": "Build & Install Flair core2_64",
"configurePreset": "flair-core2_64",
"targets": ["install"]
},
{
"name": "build-flair-armv7a_neon",
"displayName": "Build & Install Flair armv7a_neon",
"configurePreset": "flair-armv7a_neon",
"targets": ["install"]
}
]
}