1# to format cmake files we use cmake-format: 2# pip install cmake-format --upgrade 3# information about the configuration here: 4# https://github.com/cheshirekow/cmake_format 5 6# How wide to allow formatted cmake files 7line_width: 80 8 9# How many spaces to tab for indent 10tab_size: 2 11 12# Format command names consistently as 'lower' or 'upper' case 13command_case: "lower" 14 15first_comment_is_literal: False 16 17# enable comment markup parsing and reflow 18enable_markup: False 19 20# If arglists are longer than this, break them always 21max_subargs_per_line: 1 22 23max_subgroups_hwrap: 2 24 25max_pargs_hwrap: 2 26