Closed LeStarch closed 2 years ago
@kevin-f-ortega I added a fix to for the missing test case. Formatting is at the whim of our formatter.
Totally late and very optional feedback, but I was wondering if using YAML list instead of newlines to separate options might be a bit cleaner and simpler? I think this is generally a more common YAML practice, I've never actually seen multiline strings without quotes like this before, though it does seem to work fine!
Ex:
default_cmake_options:
- OPTION1=ABC
- OPTION2=123
- OPTION3=Something
instead of:
default_cmake_options: OPTION1=ABC
OPTION2=123
OPTION3=Something
I figured I might bring this up before this feature goes into regular use and we have to start thinking about backwards compatibility concerns.
Change Description
Enables users to set the
default_cmake_options
settings.ini
field to pass in default cmake options.