Revision 07c7eba1e10263d25c58af49f29bb48e19c0fe86 authored by Lars Bilke on 18 March 2021, 10:52:08 UTC, committed by Lars Bilke on 21 May 2021, 09:05:12 UTC
Packages to install are written to build/.python_packages during CMake
run and then installed once at the end of the CMake run via poetry add.

Speeds up CMake configure time a bit.
1 parent a83e717
Raw File
.clang-format
---
Language:        Cpp
BasedOnStyle:    Google

AccessModifierOffset: -4
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
AllowShortFunctionsOnASingleLine: Inline
BreakBeforeBraces: Allman
DerivePointerAlignment: false
ExperimentalAutoDetectBinPacking: true
IndentWidth:     4
PointerAlignment: Left
Standard:        Cpp11
TabWidth:        4
UseTab:          Never
back to top