This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Zunächst muss definiert werden, welche | |
# CMake Version mindestens benötigt wird | |
# um dieses Script auszuführen | |
cmake_minimum_required(VERSION 3.10) | |
# Im Anschluss daran wird ein Projektname | |
# festgelegt, auf welchen auch später über | |
# Variablen innerhalb des CMake Files zu- | |
# gegriffen werden kann, in diesem Fall | |
# "HELLO" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"clang": { | |
"clang-compilation-path": "", | |
"clang-dialect": "-std=c++20", | |
"clang-flags": [ | |
"" | |
], | |
"clang-include-input-source": true, | |
"clang-parsing": false, | |
"clang-use-headers": true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"tasks": [ | |
{ | |
"type": "cppbuild", | |
"label": "C/C++: g++.exe build active file", | |
"command": "C:\\mingw64\\bin\\g++.exe", | |
"args": [ | |
"-fdiagnostics-color=always", | |
"-g", | |
"${file}", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows is one of the greatest operating systems ever built. | |
There is no doubt about that, but on the other hand it sometimes can be a real pain. | |
Especially when it comes to reproducable routines. | |
The Command-Promt features tools as running .bat files, but when it comes to ease of use, I personally prefer zsh. | |
zsh, bash or other text-based shells don't come with Windows naturally. | |
Anyway, it is possible to get these running. | |
One of the possibilities to achieve that is running the Windows-Subsystem-for-Linux, abbr. WSL. | |
WSL is a compatibility layer for Windows systems that makes it possible to run Linux executables. |
NewerOlder