mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-01-20 12:37:13 +01:00
95 lines
1.3 KiB
Plaintext
95 lines
1.3 KiB
Plaintext
|
# make .git* files visible to git
|
||
|
!.gitignore
|
||
|
!.gitattributes
|
||
|
|
||
|
.DS_Store
|
||
|
|
||
|
#vim stuff
|
||
|
*~
|
||
|
*.swp
|
||
|
|
||
|
*.o
|
||
|
*.so
|
||
|
*.so.?
|
||
|
*.so.?.?.?
|
||
|
*.a
|
||
|
*.dylib
|
||
|
lib/*
|
||
|
|
||
|
# CMake
|
||
|
*.cmake
|
||
|
*.dir
|
||
|
CMakeFiles
|
||
|
INSTALL.*
|
||
|
ZERO_CHECK.*
|
||
|
CMakeCache.txt
|
||
|
install_manifest.txt
|
||
|
|
||
|
# Windows/Visual Studio
|
||
|
*.vcproj*
|
||
|
*.sln
|
||
|
*.suo
|
||
|
*.ncb
|
||
|
*/Debug/*
|
||
|
*/*/Debug/*
|
||
|
bin/Debug
|
||
|
*/Release/*
|
||
|
*/*/Release/*
|
||
|
*/RelWithDebInfo/*
|
||
|
*/*/RelWithDebInfo/*
|
||
|
|
||
|
# explicitly allow this path with /debug/ in it
|
||
|
!websocketpp/transport/debug/*
|
||
|
|
||
|
objs_shared/
|
||
|
objs_static/
|
||
|
|
||
|
examples/chat_server/chat_server
|
||
|
examples/echo_server/echo_server
|
||
|
examples/chat_client/chat_client
|
||
|
examples/echo_client/echo_client
|
||
|
test/basic/tests
|
||
|
libwebsocketpp.dylib.0.1.0
|
||
|
|
||
|
websocketpp.xcodeproj/xcuserdata/*
|
||
|
websocketpp.xcodeproj/project.xcworkspace/xcuserdata/*
|
||
|
policy_based_notes.hpp
|
||
|
|
||
|
examples/echo_server_tls/echo_server_tls
|
||
|
|
||
|
examples/fuzzing_client/fuzzing_client
|
||
|
|
||
|
examples/stress_client/stress_client
|
||
|
|
||
|
examples/broadcast_server_tls/broadcast_server
|
||
|
|
||
|
test/basic/perf
|
||
|
|
||
|
examples/echo_server_tls/echo_server_tls
|
||
|
|
||
|
examples/concurrent_server/concurrent_server
|
||
|
|
||
|
examples/fuzzing_server_tls/fuzzing_server
|
||
|
|
||
|
examples/wsperf/wsperf
|
||
|
|
||
|
.sconsign.dblite
|
||
|
|
||
|
build/
|
||
|
doxygen/
|
||
|
examples/wsperf/wsperf_client
|
||
|
|
||
|
*.out
|
||
|
|
||
|
*.log
|
||
|
*.opensdf
|
||
|
*.sdf
|
||
|
*.vcxproj
|
||
|
*.vcxproj.filters
|
||
|
*.user
|
||
|
install
|
||
|
Makefile
|
||
|
bin
|
||
|
|
||
|
Testing/Temporary/CTestCostData.txt
|