Skip to content

Commit 1165c92

Browse files
author
Oğuzhan Katlı
committed
initial commit
1 parent f535960 commit 1165c92

33 files changed

+4123
-0
lines changed

.gitignore

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

AdvancedCppICTerra2018.sln

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.25420.1
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AdvancedCppICTerra2018", "AdvancedCppICTerra2018.vcxproj", "{23501E93-E4E6-4835-B5ED-1B8569EA9588}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|x64 = Debug|x64
11+
Debug|x86 = Debug|x86
12+
Release|x64 = Release|x64
13+
Release|x86 = Release|x86
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{23501E93-E4E6-4835-B5ED-1B8569EA9588}.Debug|x64.ActiveCfg = Debug|x64
17+
{23501E93-E4E6-4835-B5ED-1B8569EA9588}.Debug|x64.Build.0 = Debug|x64
18+
{23501E93-E4E6-4835-B5ED-1B8569EA9588}.Debug|x86.ActiveCfg = Debug|Win32
19+
{23501E93-E4E6-4835-B5ED-1B8569EA9588}.Debug|x86.Build.0 = Debug|Win32
20+
{23501E93-E4E6-4835-B5ED-1B8569EA9588}.Release|x64.ActiveCfg = Release|x64
21+
{23501E93-E4E6-4835-B5ED-1B8569EA9588}.Release|x64.Build.0 = Release|x64
22+
{23501E93-E4E6-4835-B5ED-1B8569EA9588}.Release|x86.ActiveCfg = Release|Win32
23+
{23501E93-E4E6-4835-B5ED-1B8569EA9588}.Release|x86.Build.0 = Release|Win32
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
EndGlobal

0 commit comments

Comments
 (0)