-
Notifications
You must be signed in to change notification settings - Fork 310
Expand file tree
/
Copy pathCMakeDWAPresets.json
More file actions
84 lines (84 loc) · 3.28 KB
/
Copy pathCMakeDWAPresets.json
File metadata and controls
84 lines (84 loc) · 3.28 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
{
"version": 4,
"configurePresets": [
{
"name": "dwa-macos-environment",
"hidden": true,
"environment": {
"DEPS_ROOT" : "${sourceParentDir}/../installs",
"BUILD_DIR" : "${sourceParentDir}/../build",
"CppUnit_ROOT" : "$env{DEPS_ROOT}",
"ISPC" : "$env{DEPS_ROOT}/bin/ispc",
"JsonCpp_ROOT" : "$env{DEPS_ROOT}",
"Libcurl_ROOT" : "/usr/local",
"LIBUNWIND_ROOT" : "/usr/local",
"Log4cplus_ROOT" : "$env{DEPS_ROOT}",
"LUA_DIR" : "$env{DEPS_ROOT}",
"OpenSubDiv_ROOT" : "$env{DEPS_ROOT}",
"OpenVDB_ROOT" : "$env{DEPS_ROOT}",
"OPTIX_ROOT" : "$env{DEPS_ROOT}/optix",
"PXR_USD_LOCATION" : "$env{DEPS_ROOT}",
"PXR_INCLUDE_DIRS" : "$env{DEPS_ROOT}/include",
"Random123_ROOT" : "$env{DEPS_ROOT}",
"ZLIB_ROOT" : "/usr/local",
"OIIO_PYTHON" : "$env{DEPS_ROOT}/lib/python3.9/site-packages"
},
"cacheVariables": {
"CMAKE_PREFIX_PATH": "$env{DEPS_ROOT}"
}
},
{
"name": "dwa-macos-debug",
"displayName": "(DWA) macOS Debug",
"inherits": "dwa-macos-environment",
"binaryDir": "$env{BUILD_DIR}",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_INSTALL_PREFIX": "${sourceParentDir}/../installs/openmoonray/Debug"
},
"generator": "Xcode"
},
{
"name": "dwa-macos-release",
"displayName": "(DWA) macOS Release",
"inherits": "dwa-macos-environment",
"binaryDir": "$env{BUILD_DIR}",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_INSTALL_PREFIX": "${sourceParentDir}/../installs/openmoonray/Release"
},
"generator": "Xcode"
},
{
"name": "mactastic",
"displayName": "mactastic",
"inherits": "dwa-macos-release",
"environment": {
"DEPS_ROOT": "/Users/bart/actions-runner/_work/openmoonray/openmoonray/installs/"
}
}
],
"buildPresets": [
{
"name": "dwa-macos-debug",
"displayName": "(DWA) macOS Debug",
"configurePreset": "dwa-macos-debug",
"configuration": "Debug",
"targets": ["install"]
},
{
"name": "dwa-macos-release",
"displayName": "(DWA) macOS Release",
"configurePreset": "dwa-macos-release",
"configuration": "Release",
"targets": ["install"]
},
{
"name": "mactastic",
"displayName": "mactastic",
"configurePreset": "mactastic",
"configuration": "Release",
"targets": ["install"]
}
]
}