Skip to content

Commit b62acaa

Browse files
Merge pull request #21 from ProtectedVariable/XML-GUI
XML based GUI
2 parents 16b0f7b + fb974f0 commit b62acaa

195 files changed

Lines changed: 5079 additions & 129987 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.codacy.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
# Codacy Configuration File
3+
# Documentation: https://docs.codacy.com/repositories-configure/codacy-configuration-file/
4+
5+
# 1. Prevent Codacy from analyzing third-party code or build artifacts
6+
exclude_paths:
7+
- "**/_deps/**"
8+
- "**/build/**"
9+
- "**/includes/**"
10+
11+
engines:
12+
cppcheck:
13+
extra_lines:
14+
- "--suppress=missingInclude"
15+
- "--suppress=missingIncludeSystem"
16+
17+
- "-I includes/"
18+
19+
- "--std=c++20"
20+
21+
- "--library=std"
22+
- "--library=posix"
23+
- "--library=googletest"
24+
25+
- "--suppress=unusedFunction"
26+
- "--suppress=unmatchedSuppression"
27+
28+
- "--enable=warning,style,performance,portability"

.github/workflows/cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ${{ matrix.os }}
2222
strategy:
2323
matrix:
24-
os: [macOS-latest, windows-latest]
24+
os: [windows-latest]
2525

2626
steps:
2727
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)