mirror of https://github.com/wolfSSL/wolfssh.git
wolfssh .gitignore update; VS / VS Code / CMake / Build
parent
60a29602e5
commit
f4e4182021
|
@ -31,13 +31,21 @@ libtool
|
||||||
libtool.m4
|
libtool.m4
|
||||||
*.log
|
*.log
|
||||||
*.gz
|
*.gz
|
||||||
|
*.zip
|
||||||
|
*.bak
|
||||||
|
*.dummy
|
||||||
|
*.xcworkspace
|
||||||
Makefile
|
Makefile
|
||||||
Makefile.in
|
Makefile.in
|
||||||
*.deps
|
*.deps
|
||||||
.dirstamp
|
.dirstamp
|
||||||
*.libs
|
*.libs
|
||||||
stamp-h*
|
stamp-h*
|
||||||
|
src/stamp-h1
|
||||||
build-aux/
|
build-aux/
|
||||||
|
wolfmqtt-config
|
||||||
|
build-test/
|
||||||
|
build/
|
||||||
wolfssh-config
|
wolfssh-config
|
||||||
aminclude.am
|
aminclude.am
|
||||||
|
|
||||||
|
@ -71,6 +79,18 @@ client.plist
|
||||||
# misc
|
# misc
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
|
# Visual Studio Code Workspace Files
|
||||||
|
*.vscode
|
||||||
|
*.userprefs
|
||||||
|
*.exe
|
||||||
|
*.dll
|
||||||
|
.vs
|
||||||
|
Backup
|
||||||
|
UpgradeLog.htm
|
||||||
|
*.aps
|
||||||
|
*.VC.db
|
||||||
|
*.filters
|
||||||
|
|
||||||
# VS debris
|
# VS debris
|
||||||
*.sdf
|
*.sdf
|
||||||
*.v11.suo
|
*.v11.suo
|
||||||
|
@ -88,3 +108,30 @@ DLL Release
|
||||||
.cproject
|
.cproject
|
||||||
.project
|
.project
|
||||||
.settings
|
.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…
Reference in New Issue