96 lines
2.3 KiB
C++
96 lines
2.3 KiB
C++
/** CmakeLists.txt
|
|
cmake_minimum_required(VERSION 3.12)
|
|
|
|
project(fsh LANGUAGES CXX)
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
set(FSH_SOURCE_FILES
|
|
src/main.cpp
|
|
src/fsh.cpp
|
|
src/lexer.cpp
|
|
src/ast/ast.cpp
|
|
src/ast/ast_exec.cpp
|
|
src/ast/ast_print.cpp
|
|
src/util/input.cpp
|
|
src/util/text.cpp
|
|
src/util/error.cpp
|
|
src/cmd/arg.cpp
|
|
src/cmd/cmd_base.cpp
|
|
)
|
|
|
|
include_directories(include)
|
|
|
|
add_executable(fsh ${FSH_SOURCE_FILES})
|
|
*/
|
|
|
|
/** .clang-format
|
|
|
|
---
|
|
Language: Cpp
|
|
BasedOnStyle: Mozilla
|
|
|
|
AccessModifierOffset: -2
|
|
AlignAfterOpenBracket: Align
|
|
AlignConsecutiveMacros: true
|
|
AlignConsecutiveAssignments: true
|
|
AlignEscapedNewlines: Right
|
|
AlignOperands: false
|
|
AlignTrailingComments: true
|
|
AllowAllArgumentsOnNextLine: true
|
|
AllowAllConstructorInitializersOnNextLine: true
|
|
AllowAllParametersOfDeclarationOnNextLine: true
|
|
AllowShortBlocksOnASingleLine: true
|
|
AllowShortCaseLabelsOnASingleLine: true
|
|
AllowShortFunctionsOnASingleLine: true
|
|
AllowShortIfStatementsOnASingleLine: Always
|
|
AllowShortLambdasOnASingleLine: All
|
|
AllowShortLoopsOnASingleLine: true
|
|
AlwaysBreakAfterDefinitionReturnType: None
|
|
AlwaysBreakAfterReturnType: None
|
|
AlwaysBreakBeforeMultilineStrings: false
|
|
AlwaysBreakTemplateDeclarations: Yes
|
|
BreakBeforeBraces: Attach
|
|
BreakBeforeTernaryOperators: false
|
|
BreakConstructorInitializers: AfterColon
|
|
ColumnLimit: 120
|
|
CompactNamespaces: false
|
|
ConstructorInitializerAllOnOneLineOrOnePerLine: false
|
|
ExperimentalAutoDetectBinPacking: false
|
|
FixNamespaceComments: false
|
|
IncludeBlocks: Preserve
|
|
IndentCaseLabels: true
|
|
IndentWidth: 4
|
|
PointerAlignment: Left
|
|
ReflowComments: false
|
|
SortIncludes: false
|
|
SortUsingDeclarations: false
|
|
SpaceAfterCStyleCast: false
|
|
SpaceAfterLogicalNot: false
|
|
SpaceAfterTemplateKeyword: true
|
|
SpaceBeforeCtorInitializerColon: true
|
|
SpaceBeforeInheritanceColon: true
|
|
SpaceBeforeParens: ControlStatements
|
|
SpaceBeforeRangeBasedForLoopColon: true
|
|
SpaceInEmptyParentheses: false
|
|
SpacesBeforeTrailingComments: 1
|
|
SpacesInAngles: false
|
|
SpacesInCStyleCastParentheses: false
|
|
SpacesInContainerLiterals: false
|
|
SpacesInParentheses: false
|
|
SpacesInSquareBrackets: false
|
|
Standard: Auto
|
|
TabWidth: 4
|
|
UseTab: Never
|
|
|
|
AllowShortEnumsOnASingleLine: false
|
|
|
|
BraceWrapping:
|
|
AfterEnum: false
|
|
|
|
AlignConsecutiveDeclarations:
|
|
Enabled: true
|
|
|
|
NamespaceIndentation: All
|
|
|
|
*/ |