Closed MarkSchofield closed 9 months ago
The 'CMakePresets.json' file in the 'example' folder opts-in to functionality that requires opt-in features from Visual Studio:
VS_USE_SPECTRE_MITIGATION_RUNTIME
VS_EXPERIMENTAL_MODULE
Setting these options to OFF means that a default install of Visual Studio - with the C++ workload - should be able to build the examples.
OFF
The 'CMakePresets.json' file in the 'example' folder opts-in to functionality that requires opt-in features from Visual Studio:
VS_USE_SPECTRE_MITIGATION_RUNTIME
- This uses the Spectre-mitigation runtimes by default, but Visual Studio doesn't install them by default.VS_EXPERIMENTAL_MODULE
- This adds the Visual Studio-shipped modules for C++ to the path, but Visual Studio doesn't install them by default.Setting these options to
OFF
means that a default install of Visual Studio - with the C++ workload - should be able to build the examples.