From af78640549c2274c608c6d19467129f31425e219 Mon Sep 17 00:00:00 2001 From: Dimitris Panokostas Date: Fri, 9 Feb 2018 13:45:27 +0100 Subject: [PATCH] Added a CppProperties.json file, so you can use the Open Folder capabilitiies from Visual Studio --- CppProperties.json | 101 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 CppProperties.json diff --git a/CppProperties.json b/CppProperties.json new file mode 100644 index 00000000..fbf0ac6c --- /dev/null +++ b/CppProperties.json @@ -0,0 +1,101 @@ +{ + "configurations": [ + { + "inheritEnvironments": [ + "gcc-arm" + ], + "name": "ARM-SDL1-Debug", + "includePath": [ + "src", + "src/osdep", + "src/threaddep", + "src/include", + "src/archivers", + "C:\\SysGCC\\raspberry\\lib\\gcc\\arm-linux-gnueabihf\\6\\include", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\include\\c++\\6", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\sysroot\\usr\\include", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\sysroot\\usr\\include\\arm-linux-gnueabihf", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\sysroot\\usr\\include\\SDL", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\sysroot\\usr\\include\\libxml2", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\sysroot\\opt\\vc\\include", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\sysroot\\opt\\vc\\include\\interface\\vmcs_host\\linux", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\sysroot\\opt\\vc\\include\\interface\\vcos\\pthreads" + ], + "defines": [ + "DEBUG", + "ARMV6T2", + "USE_ARMNEON", + "USE_SDL1", + "AMIBERRY", + "ARMV6_ASSEMBLY", + "USE_DISPMANX" + ], + "intelliSenseMode": "linux-gcc-arm" + }, + { + "inheritEnvironments": [ + "gcc-arm" + ], + "name": "ARM-SDL1-Release", + "includePath": [ + "src", + "src/osdep", + "src/threaddep", + "src/include", + "src/archivers", + "C:\\SysGCC\\raspberry\\lib\\gcc\\arm-linux-gnueabihf\\6\\include", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\include\\c++\\6", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\sysroot\\usr\\include", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\sysroot\\usr\\include\\arm-linux-gnueabihf", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\sysroot\\usr\\include\\SDL", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\sysroot\\usr\\include\\libxml2", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\sysroot\\opt\\vc\\include", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\sysroot\\opt\\vc\\include\\interface\\vmcs_host\\linux", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\sysroot\\opt\\vc\\include\\interface\\vcos\\pthreads" + ], + "defines": [ + "NDEBUG", + "ARMV6T2", + "USE_ARMNEON", + "USE_SDL1", + "AMIBERRY", + "ARMV6_ASSEMBLY", + "USE_DISPMANX" + ], + "intelliSenseMode": "linux-gcc-arm" + }, + { + "inheritEnvironments": [ + "gcc-arm" + ], + "name": "ARM-SDL2-Debug", + "includePath": [ + "src", + "src/osdep", + "src/threaddep", + "src/include", + "src/archivers", + "src/guisan/include", + "C:\\SysGCC\\raspberry\\lib\\gcc\\arm-linux-gnueabihf\\6\\include", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\include\\c++\\6", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\sysroot\\usr\\include", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\sysroot\\usr\\include\\arm-linux-gnueabihf", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\sysroot\\usr\\include\\SDL2", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\sysroot\\usr\\include\\libxml2", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\sysroot\\opt\\vc\\include", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\sysroot\\opt\\vc\\include\\interface\\vmcs_host\\linux", + "C:\\SysGCC\\raspberry\\arm-linux-gnueabihf\\sysroot\\opt\\vc\\include\\interface\\vcos\\pthreads" + ], + "defines": [ + "DEBUG", + "ARMV6T2", + "USE_ARMNEON", + "USE_SDL2", + "AMIBERRY", + "ARMV6_ASSEMBLY", + "USE_DISPMANX" + ], + "intelliSenseMode": "linux-gcc-arm" + } + ] +} \ No newline at end of file