Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wolfssh .gitignore update; VS / VS Code / CMake / Build #639

Merged
merged 1 commit into from
Jan 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,21 @@ libtool
libtool.m4
*.log
*.gz
*.zip
*.bak
*.dummy
*.xcworkspace
Makefile
Makefile.in
*.deps
.dirstamp
*.libs
stamp-h*
src/stamp-h1
build-aux/
wolfmqtt-config
build-test/
build/
wolfssh-config
aminclude.am

Expand Down Expand Up @@ -71,6 +79,18 @@ client.plist
# misc
.DS_Store

# Visual Studio Code Workspace Files
*.vscode
*.userprefs
*.exe
*.dll
.vs
Backup
UpgradeLog.htm
*.aps
*.VC.db
*.filters

# VS debris
*.sdf
*.v11.suo
Expand All @@ -88,3 +108,30 @@ DLL Release
.cproject
.project
.settings


# auto-created CMake backups
**/CMakeLists.txt.old

# VisualGDB
**/.visualgdb
**/*.vgdbproj.*.user


# Espressif sdk config default should be saved in sdkconfig.defaults
# we won't track the actual working sdkconfig files
/ide/Espressif/**/out/
/ide/Espressif/**/sdkconfig
/ide/Espressif/**/sdkconfig.old

# Espressif managed components to exclude:
/ide/Espressif/**/managed_components/**

# Espressif managed component lock files to exclude.
# "In general, it's ok to have it under version control, however, it ties
# the solution to the exact version of ESP-IDF and will be ignored if an
# example is built against another IDF version or for a different target.
# So it's better to git ignore it for the examples."
/ide/Espressif/**/dependencies.lock


Loading