forked from f3d-app/f3d
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json
More file actions
76 lines (76 loc) · 2.03 KB
/
Copy pathCMakePresets.json
File metadata and controls
76 lines (76 loc) · 2.03 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
{
"version": 3,
"configurePresets": [
{
"name": "dev",
"displayName": "Developer config",
"description": "Developer build in debug mode and with testing activated",
"cacheVariables": {
"BUILD_TESTING": "ON",
"CMAKE_BUILD_TYPE": "Debug",
"F3D_STRICT_BUILD": "ON",
"F3D_TESTING_DISABLE_CATCH_ALL": "ON",
"F3D_TESTING_ENABLE_LONG_TIMEOUT_TESTS": "ON"
}
},
{
"name": "vcpkg",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
"CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake",
"F3D_PLUGIN_BUILD_HDF": "ON",
"F3D_PLUGIN_BUILD_ALEMBIC": "OFF",
"F3D_PLUGIN_BUILD_ASSIMP": "OFF",
"F3D_PLUGIN_BUILD_DRACO": "OFF",
"F3D_PLUGIN_BUILD_OCCT": "OFF",
"F3D_PLUGIN_BUILD_USD": "OFF"
}
},
{
"name": "vcpkg_alembic",
"inherits": "vcpkg",
"displayName": "vcpkg + alembic plugin",
"cacheVariables": {
"VCPKG_MANIFEST_FEATURES": "alembic",
"F3D_PLUGIN_BUILD_ALEMBIC": "ON"
}
},
{
"name": "vcpkg_assimp",
"inherits": "vcpkg",
"displayName": "vcpkg + assimp plugin",
"cacheVariables": {
"VCPKG_MANIFEST_FEATURES": "assimp",
"F3D_PLUGIN_BUILD_ASSIMP": "ON"
}
},
{
"name": "vcpkg_occt",
"inherits": "vcpkg",
"displayName": "vcpkg + occt plugin",
"cacheVariables": {
"VCPKG_MANIFEST_FEATURES": "occt",
"F3D_PLUGIN_BUILD_OCCT": "ON"
}
},
{
"name": "vcpkg_draco",
"inherits": "vcpkg",
"displayName": "vcpkg + draco plugin",
"cacheVariables": {
"VCPKG_MANIFEST_FEATURES": "draco",
"F3D_PLUGIN_BUILD_DRACO": "ON"
}
},
{
"name": "vcpkg_usd",
"inherits": "vcpkg",
"displayName": "vcpkg + usd plugin",
"cacheVariables": {
"VCPKG_MANIFEST_FEATURES": "usd",
"F3D_PLUGIN_BUILD_USD": "ON"
}
}
]
}