c_cpp_properties.json (1300B)
1 { 2 "env": { 3 "commonIncludePaths": [ 4 "${workspaceFolder}/**", 5 "${workspaceFolder}/../../WDL/**", 6 "${workspaceFolder}/../../IPlug/**", 7 "${workspaceFolder}/../../IGraphics/**", 8 "${workspaceFolder}/../../Dependencies/**" 9 ], 10 "commonDefs": [ 11 "APP_API", 12 "IPLUG_DSP=1", 13 "IPLUG_EDITOR=1", 14 "IGRAPHICS_NANOVG", 15 "NOMINMAX" 16 ] 17 }, 18 "configurations": [ 19 { 20 "name": "Mac", 21 "includePath": [ 22 "${commonIncludePaths}", 23 "${workspaceFolder}/../../Dependencies/Build/mac/include/**" 24 ], 25 "defines": [ 26 "${commonDefs}", 27 "OS_MAC", 28 "IGRAPHICS_METAL" 29 ], 30 "macFrameworkPath": [ 31 "/System/Library/Frameworks", 32 "/Library/Frameworks" 33 ], 34 "cppStandard": "c++14" 35 }, 36 { 37 "name": "Win32", 38 "includePath": [ 39 "${commonIncludePaths}" 40 ], 41 "defines": [ 42 "${commonDefs}", 43 "OS_WIN", 44 "IGRAPHICS_GL2" 45 ] 46 } 47 ], 48 "version": 4 49 }