stella/.vscode/settings.json

23 lines
857 B
JSON
Raw Normal View History

2016-10-10 22:22:38 +00:00
// Platzieren Sie Ihre Einstellungen in dieser Datei, um Standard- und Benutzereinstellungen zu überschreiben.
{
"clang.cxxflags": [
"-std=c++11",
"-I/home/cnspeckn/git/stella/src/common",
"-I/home/cnspeckn/git/stella/src/emucore",
"-I/home/cnspeckn/git/stella/src/emucore/tia",
"-I/home/cnspeckn/git/stella/src/debugger",
"-I/home/cnspeckn/git/stella/src/debugger/gui",
"-I/home/cnspeckn/git/stella/src/gui"
2016-10-10 22:22:38 +00:00
],
"editor.tabSize": 2,
2016-11-08 22:54:22 +00:00
"files.trimTrailingWhitespace": true,
2016-10-26 12:59:36 +00:00
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"src/**/*.o": true
},
"editor.trimAutoWhitespace": true,
"editor.useTabStops": false
2016-10-10 22:22:38 +00:00
}