Skip to content

Commit 3642d8a

Browse files
Initial commit.
0 parents  commit 3642d8a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+991
-0
lines changed

.gitignore

Lines changed: 305 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,305 @@
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
4+
Build/
5+
6+
# User-specific files
7+
*.suo
8+
*.user
9+
*.userosscache
10+
*.sln.docstates
11+
12+
# User-specific files (MonoDevelop/Xamarin Studio)
13+
*.userprefs
14+
15+
# Build results
16+
[Dd]ebug/
17+
[Dd]ebugPublic/
18+
[Rr]elease/
19+
[Rr]eleases/
20+
x64/
21+
x86/
22+
bld/
23+
[Bb]in/
24+
[Oo]bj/
25+
[Ll]og/
26+
27+
# Visual Studio 2015 cache/options directory
28+
.vs/
29+
# Uncomment if you have tasks that create the project's static files in wwwroot
30+
#wwwroot/
31+
32+
# MSTest test Results
33+
[Tt]est[Rr]esult*/
34+
[Bb]uild[Ll]og.*
35+
36+
# NUNIT
37+
*.VisualState.xml
38+
TestResult.xml
39+
40+
# Build Results of an ATL Project
41+
[Dd]ebugPS/
42+
[Rr]eleasePS/
43+
dlldata.c
44+
45+
# DNX
46+
project.lock.json
47+
artifacts/
48+
49+
*_i.c
50+
*_p.c
51+
*_i.h
52+
*.ilk
53+
*.meta
54+
*.obj
55+
*.pch
56+
*.pdb
57+
*.pgc
58+
*.pgd
59+
*.rsp
60+
*.sbr
61+
*.tlb
62+
*.tli
63+
*.tlh
64+
*.tmp
65+
*.tmp_proj
66+
*.log
67+
*.vspscc
68+
*.vssscc
69+
.builds
70+
*.pidb
71+
*.svclog
72+
*.scc
73+
74+
# Chutzpah Test files
75+
_Chutzpah*
76+
77+
# Visual C++ cache files
78+
ipch/
79+
*.aps
80+
*.ncb
81+
*.opendb
82+
*.opensdf
83+
*.sdf
84+
*.cachefile
85+
*.VC.db
86+
*.VC.VC.opendb
87+
88+
# Visual Studio profiler
89+
*.psess
90+
*.vsp
91+
*.vspx
92+
*.sap
93+
94+
# TFS 2012 Local Workspace
95+
$tf/
96+
97+
# Guidance Automation Toolkit
98+
*.gpState
99+
100+
# ReSharper is a .NET coding add-in
101+
_ReSharper*/
102+
*.[Rr]e[Ss]harper
103+
*.DotSettings.user
104+
105+
# JustCode is a .NET coding add-in
106+
.JustCode
107+
108+
# TeamCity is a build add-in
109+
_TeamCity*
110+
111+
# DotCover is a Code Coverage Tool
112+
*.dotCover
113+
114+
# NCrunch
115+
_NCrunch_*
116+
.*crunch*.local.xml
117+
nCrunchTemp_*
118+
119+
# MightyMoose
120+
*.mm.*
121+
AutoTest.Net/
122+
123+
# Web workbench (sass)
124+
.sass-cache/
125+
126+
# Installshield output folder
127+
[Ee]xpress/
128+
129+
# DocProject is a documentation generator add-in
130+
DocProject/buildhelp/
131+
DocProject/Help/*.HxT
132+
DocProject/Help/*.HxC
133+
DocProject/Help/*.hhc
134+
DocProject/Help/*.hhk
135+
DocProject/Help/*.hhp
136+
DocProject/Help/Html2
137+
DocProject/Help/html
138+
139+
# Click-Once directory
140+
publish/
141+
142+
# Publish Web Output
143+
*.[Pp]ublish.xml
144+
*.azurePubxml
145+
# TODO: Comment the next line if you want to checkin your web deploy settings
146+
# but database connection strings (with potential passwords) will be unencrypted
147+
*.pubxml
148+
*.publishproj
149+
150+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
151+
# checkin your Azure Web App publish settings, but sensitive information contained
152+
# in these scripts will be unencrypted
153+
PublishScripts/
154+
155+
# NuGet Packages
156+
*.nupkg
157+
# The packages folder can be ignored because of Package Restore
158+
**/packages/*
159+
# except build/, which is used as an MSBuild target.
160+
!**/packages/build/
161+
# Uncomment if necessary however generally it will be regenerated when needed
162+
#!**/packages/repositories.config
163+
# NuGet v3's project.json files produces more ignoreable files
164+
*.nuget.props
165+
*.nuget.targets
166+
167+
# Microsoft Azure Build Output
168+
csx/
169+
*.build.csdef
170+
171+
# Microsoft Azure Emulator
172+
ecf/
173+
rcf/
174+
175+
# Windows Store app package directories and files
176+
AppPackages/
177+
BundleArtifacts/
178+
Package.StoreAssociation.xml
179+
_pkginfo.txt
180+
181+
# Visual Studio cache files
182+
# files ending in .cache can be ignored
183+
*.[Cc]ache
184+
# but keep track of directories ending in .cache
185+
!*.[Cc]ache/
186+
187+
# Others
188+
ClientBin/
189+
~$*
190+
*~
191+
*.dbmdl
192+
*.dbproj.schemaview
193+
*.pfx
194+
*.publishsettings
195+
node_modules/
196+
orleans.codegen.cs
197+
198+
# Since there are multiple workflows, uncomment next line to ignore bower_components
199+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
200+
#bower_components/
201+
202+
# RIA/Silverlight projects
203+
Generated_Code/
204+
205+
# Backup & report files from converting an old project file
206+
# to a newer Visual Studio version. Backup files are not needed,
207+
# because we have git ;-)
208+
_UpgradeReport_Files/
209+
Backup*/
210+
UpgradeLog*.XML
211+
UpgradeLog*.htm
212+
213+
# SQL Server files
214+
*.mdf
215+
*.ldf
216+
217+
# Business Intelligence projects
218+
*.rdl.data
219+
*.bim.layout
220+
*.bim_*.settings
221+
222+
# Microsoft Fakes
223+
FakesAssemblies/
224+
225+
# GhostDoc plugin setting file
226+
*.GhostDoc.xml
227+
228+
# Node.js Tools for Visual Studio
229+
.ntvs_analysis.dat
230+
231+
# Visual Studio 6 build log
232+
*.plg
233+
234+
# Visual Studio 6 workspace options file
235+
*.opt
236+
237+
# Visual Studio LightSwitch build output
238+
**/*.HTMLClient/GeneratedArtifacts
239+
**/*.DesktopClient/GeneratedArtifacts
240+
**/*.DesktopClient/ModelManifest.xml
241+
**/*.Server/GeneratedArtifacts
242+
**/*.Server/ModelManifest.xml
243+
_Pvt_Extensions
244+
245+
# Paket dependency manager
246+
.paket/paket.exe
247+
paket-files/
248+
249+
# FAKE - F# Make
250+
.fake/
251+
252+
# JetBrains Rider
253+
.idea/
254+
*.sln.iml
255+
256+
# =========================
257+
# Operating System Files
258+
# =========================
259+
260+
# OSX
261+
# =========================
262+
263+
.DS_Store
264+
.AppleDouble
265+
.LSOverride
266+
267+
# Thumbnails
268+
._*
269+
270+
# Files that might appear in the root of a volume
271+
.DocumentRevisions-V100
272+
.fseventsd
273+
.Spotlight-V100
274+
.TemporaryItems
275+
.Trashes
276+
.VolumeIcon.icns
277+
278+
# Directories potentially created on remote AFP share
279+
.AppleDB
280+
.AppleDesktop
281+
Network Trash Folder
282+
Temporary Items
283+
.apdisk
284+
285+
# Windows
286+
# =========================
287+
288+
# Windows image file caches
289+
Thumbs.db
290+
ehthumbs.db
291+
292+
# Folder config file
293+
Desktop.ini
294+
295+
# Recycle Bin used on file shares
296+
$RECYCLE.BIN/
297+
298+
# Windows Installer files
299+
*.cab
300+
*.msi
301+
*.msm
302+
*.msp
303+
304+
# Windows shortcuts
305+
*.lnk

.gitmodules

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
[submodule "Dependencies/googletest"]
2+
path = Dependencies/googletest
3+
url = https://github.com/google/googletest
4+
[submodule "Dependencies/boost/optional"]
5+
path = Dependencies/boost/optional
6+
url = https://github.com/boostorg/optional
7+
[submodule "Dependencies/boost/utility"]
8+
path = Dependencies/boost/utility
9+
url = https://github.com/boostorg/utility
10+
[submodule "Dependencies/boost/type_traits"]
11+
path = Dependencies/boost/type_traits
12+
url = https://github.com/boostorg/type_traits
13+
[submodule "Dependencies/boost/static_assert"]
14+
path = Dependencies/boost/static_assert
15+
url = https://github.com/boostorg/static_assert
16+
[submodule "Dependencies/boost/throw_exception"]
17+
path = Dependencies/boost/throw_exception
18+
url = https://github.com/boostorg/throw_exception
19+
[submodule "Dependencies/boost/predef"]
20+
path = Dependencies/boost/predef
21+
url = https://github.com/boostorg/predef
22+
[submodule "Dependencies/boost/move"]
23+
path = Dependencies/boost/move
24+
url = https://github.com/boostorg/move
25+
[submodule "Dependencies/boost/core"]
26+
path = Dependencies/boost/core
27+
url = https://github.com/boostorg/core
28+
[submodule "Dependencies/boost/config"]
29+
path = Dependencies/boost/config
30+
url = https://github.com/boostorg/config
31+
[submodule "Dependencies/boost/assert"]
32+
path = Dependencies/boost/assert
33+
url = https://github.com/boostorg/assert
34+
[submodule "Dependencies/boost/detail"]
35+
path = Dependencies/boost/detail
36+
url = https://github.com/boostorg/detail
37+
[submodule "Dependencies/boost/preprocessor"]
38+
path = Dependencies/boost/preprocessor
39+
url = https://github.com/boostorg/preprocessor
40+
[submodule "Dependencies/boost/container_hash"]
41+
path = Dependencies/boost/container_hash
42+
url = https://github.com/boostorg/container_hash
43+
[submodule "Dependencies/boost/integer"]
44+
path = Dependencies/boost/integer
45+
url = https://github.com/boostorg/integer

.travis.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
language: cpp
2+
compiler:
3+
- gcc-5
4+
os:
5+
- linux
6+
7+
addons:
8+
apt:
9+
sources:
10+
- ubuntu-toolchain-r-test
11+
packages:
12+
- gcc-5
13+
- g++-5
14+
15+
script:
16+
- mkdir Projects/CMake/Build -p
17+
- cd Projects/CMake/Build
18+
- export CC=gcc-5
19+
- export CXX=g++-5
20+
- cmake --version
21+
- cmake .. -DCMAKE_INSTALL_PREFIX:PATH=./Artifact
22+
- make
23+
- make install
24+
- ./Artifact/bin/Test
25+
after_success:

Dependencies/boost/assert

Submodule assert added at 35c31e7

Dependencies/boost/config

Submodule config added at 68b8da3

Dependencies/boost/container_hash

Submodule container_hash added at 8a7fc58

Dependencies/boost/core

Submodule core added at 5a5d2ad

Dependencies/boost/detail

Submodule detail added at 8dbbfe3

Dependencies/boost/integer

Submodule integer added at bee5818

Dependencies/boost/move

Submodule move added at 48243ff

Dependencies/boost/optional

Submodule optional added at d4a4a5b

Dependencies/boost/predef

Submodule predef added at 9c46a94

Dependencies/boost/preprocessor

Submodule preprocessor added at 9cf6692

0 commit comments

Comments
 (0)