my plan was to start with a c++ example here and instead of visual studio, only the smaller version of "code" editor.
?:\Steam\steamapps\common\App Game Kit 2\Tier 2\apps\template_windows_vs2015_64
So, i installed this VS Studio Code Editor with C++ Extension.
https://code.visualstudio.com/docs/languages/cpp
installed this popular C++ compiler MinGW for Windows from link there
http://www.mingw.org/
Edited the includePath in settings which i opened via lightbulb in source code.
created a tasks.json via menu from a template.
because of "No such file or directory" after hours i found some infos in web it will have a relative include path^^
Quote: "g++ has an option -I. It lets you add include search paths to the command line.
You can add more include-paths; each you give is relative to the current directory."
now it compile throw many warnings and in the end i have errors and still NO EXE
this is my compile tasks.json
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
// -I must be relative
"version": "2.0.0",
"tasks": [
{
"label": "build app",
"type": "shell",
"command": "g++",
"args": [
"-g",
"template.cpp","-I","../../common/include","-I","../../bullet"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$gcc"
]
}
]
}
AGK (Steam) V2017.09.25 : Windows 10 Pro 64 Bit : AMD (17.11.2) Radeon R7 265 : Mac mini OS High Sierra (10.13)