Skip to content

Commit

Permalink
added vtk-6.3.0 presets
Browse files Browse the repository at this point in the history
  • Loading branch information
scharlton2 committed Feb 10, 2022
1 parent c8abd8b commit d677e1b
Showing 1 changed file with 71 additions and 0 deletions.
71 changes: 71 additions & 0 deletions misc/CMakePresets.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 18,
"patch": 0
},
"configurePresets": [
{
"name": "vs2017",
"displayName": "vs2017 x64 with vtk-6.3.0-vs2017",
"generator": "Visual Studio 15 2017",
"architecture": "x64",
"binaryDir": "C:/VTK-6.3.0-vs2017-x64",
"cacheVariables": {
"BUILD_TESTING": {
"type": "BOOL",
"value": "OFF"
},
"CMAKE_DEBUG_POSTFIX": {
"type": "STRING",
"value": "d"
}
},
"vendor": {
"Name": "U.S. Geological Survey",
"Notes": "This file should be placed in the root directory of C:/VTK-6.3.0",
"Configure": "cmake --preset vs2017",
"Build": "cmake --build --preset vs2017 --config release",
"Install": "cmake --install C:/VTK-6.3.0-vs2017-x64 --prefix <PREFIX> --config release"
}
},
{
"name": "vs2017-leaks",
"displayName": "vs2017 x64 with vtk-6.3.0-vs2017 with VTK_DEBUG_LEAKS=ON",
"generator": "Visual Studio 15 2017",
"architecture": "x64",
"binaryDir": "C:/VTK-6.3.0-vs2017-x64-Leaks",
"cacheVariables": {
"BUILD_TESTING": {
"type": "BOOL",
"value": "OFF"
},
"CMAKE_DEBUG_POSTFIX": {
"type": "STRING",
"value": "d"
},
"VTK_DEBUG_LEAKS": {
"type": "BOOL",
"value": "ON"
}
},
"vendor": {
"Name": "U.S. Geological Survey",
"Notes": "This file should be placed in the root directory of C:/VTK-6.3.0",
"Configure": "cmake --preset vs2017-leaks",
"Build": "cmake --build --preset vs2017-leaks --config release",
"Install": "cmake --install C:/VTK-6.3.0-vs2017-x64-Leaks --prefix <PREFIX> --config release"
}
}
],
"buildPresets": [
{
"name": "vs2017",
"configurePreset": "vs2017"
}
],
"vendor": {
"Note": ""
}
}

0 comments on commit d677e1b

Please sign in to comment.