-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
40 lines (33 loc) · 941 Bytes
/
.gitignore
File metadata and controls
40 lines (33 loc) · 941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Build directories (root only — avoid ignoring docs/build/)
/build/
/build_*/
out/
# Test/demo output (written under build when run via CTest; can appear under repo if run from repo root)
results/
# Demo run outputs (written in-place by run_seastack when executed from repo)
data/demos/**/outputs/
!data/demos/**/expected/
# MoorDyn runtime output (generated alongside .txt input files)
data/demos/**/*.log
data/demos/**/*.out
# IDE / editor
.vs/
.vscode/
*.user
*.suo
CMakeSettings.json
CMakeUserPresets.json
# Python
__pycache__/
*.pyc
# User-local config (contains machine-specific paths)
build-config.json
# MoorDyn workaround: copied at configure time (upstream CMAKE_SOURCE_DIR defect).
# /LICENSE.txt is MoorDyn's BSD-3, NOT the SEA-Stack project license.
# The real project license is /LICENSE (MIT).
# See also: third_party/licenses/MoorDyn-LICENSE.txt
/cmake/MoorDynConfig.cmake
/LICENSE.txt
BACKLOG.md
WORK.md
.DS_Store