(This section is not yet complete.)
We developed Mimir in Visual Studio Code, and we recommend installing the C/C++
and CMake Tools
extensions by Microsoft.
To get maximum IDE support, you should set the following Cmake: Configure Args
in the CMake Tools
extension settings under Workspace
:
-DCMAKE_PREFIX_PATH=${workspaceFolder}/dependencies/installs
After running CMake: Configure
in Visual Studio Code (ctrl + shift + p), you should see all include paths being correctly resolved.
Alternatively, you can create the file .vscode/settings.json
with the content:
{
"cmake.configureArgs": [ "-DCMAKE_PREFIX_PATH=${workspaceFolder}/dependencies/installs" ]
}