Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 735 Bytes

DEVELOPER_GUIDELINES.md

File metadata and controls

20 lines (13 loc) · 735 Bytes

Development Guidelines

(This section is not yet complete.)

IDE Support

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" ]
}