Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cpp-project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
David Maul
cpp-project
Commits
a09f1d15
Unverified
Commit
a09f1d15
authored
4 months ago
by
David Hermann
Browse files
Options
Downloads
Patches
Plain Diff
Adding instructions for syntax errors under vscode in README
parent
5eaa5d36
No related branches found
No related tags found
1 merge request
!14
Refactoring CMakeLists.txt
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+25
-0
25 additions, 0 deletions
README.md
with
25 additions
and
0 deletions
README.md
+
25
−
0
View file @
a09f1d15
...
...
@@ -49,6 +49,31 @@
4.
Visual Studio erkennt automatisch das CMake-Projekt
5.
Build über "Build All" ausführen
#### Falls Syntax errors
1.
Erstelle .vscode/c_cpp_properties.json Datei
2.
Füge die folgende JSON so oder so ähnlich ein:
```
json
{
"configurations"
:
[
{
"name"
:
"Fedora"
,
"includePath"
:
[
"/usr/include"
,
"/usr/include/SDL2"
],
"defines"
:
[],
"intelliSenseMode"
:
"linux-gcc-x64"
,
"compilerPath"
:
"/usr/bin/gcc"
,
"cStandard"
:
"c17"
,
"cppStandard"
:
"c++17"
}
],
"version"
:
4
}
```
## Build-Optionen
CMake kann mit verschiedenen Optionen konfiguriert werden:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment