Skip to content

Commit

Permalink
Flatten repo
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexisTM committed Sep 18, 2020
1 parent de6532f commit 3d25f02
Show file tree
Hide file tree
Showing 4,800 changed files with 275,091 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
18 changes: 18 additions & 0 deletions Release/libs/websocketpp/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Lineendings
*.sln eol=crlf
*.vcproj eol=crlf
*.vcxproj* eol=crlf

# Whitespace rules
# strict (no trailing, no tabs)
*.cpp whitespace=trailing-space,space-before-tab,tab-in-indent,cr-at-eol
*.hpp whitespace=trailing-space,space-before-tab,tab-in-indent,cr-at-eol
*.c whitespace=trailing-space,space-before-tab,tab-in-indent,cr-at-eol
*.h whitespace=trailing-space,space-before-tab,tab-in-indent,cr-at-eol

# normal (no trailing)
*.sql whitespace=trailing-space,space-before-tab,cr-at-eol
*.txt whitespace=trailing-space,space-before-tab,cr-at-eol

# special files which must ignore whitespace
*.patch whitespace=-trailing-space
94 changes: 94 additions & 0 deletions Release/libs/websocketpp/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
# 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
21 changes: 21 additions & 0 deletions Release/libs/websocketpp/.travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
language: cpp
compiler:
- gcc
before_install:
#- sudo apt-get install libboost-chrono1.48-dev libboost-regex1.48-dev libboost-system1.48-dev libboost-thread1.48-dev libboost-test1.48-dev libboost-random1.48-dev -y
- sudo add-apt-repository -y ppa:boost-latest/ppa && sudo apt-get update -q && sudo apt-get install -y libboost-chrono1.55-dev libboost-random1.55-dev libboost-regex1.55-dev libboost-system1.55-dev libboost-thread1.55-dev libboost-test1.55-dev
env:
global:
- BOOST_INCLUDES=/usr/include
- BOOST_LIBS=/usr/lib/x86_64-linux-gnu
script: scons -j 2 && scons test
branches:
only:
- master
- develop
notifications:
recipients:
- travis@zaphoyd.com
email:
on_success: change
on_failure: always
Loading

0 comments on commit 3d25f02

Please sign in to comment.