NeuralAmpModelerPlugin

Plugin for Neural Amp Modeler
Log | Files | Refs | Submodules | README | LICENSE

c_cpp_properties.json (2329B)


      1 {
      2     "env": {
      3         "commonIncludePaths": [
      4             "${workspaceFolder}/NeuralAmpModeler/.",
      5             "${workspaceFolder}/NeuralAmpModeler/**",
      6             "${workspaceFolder}/iPlug2/WDL/**",
      7             "${workspaceFolder}/iPlug2/IPlug/**",
      8             "${workspaceFolder}/iPlug2/IGraphics/**",
      9             "${workspaceFolder}/iPlug2/Dependencies/IGraphics/glad_GL2/include/",
     10             "${workspaceFolder}/iPlug2/Dependencies/IGraphics/NanoVG/src/",
     11             "${workspaceFolder}/iPlug2/Dependencies/IGraphics/NanoSVG/src/"
     12         ],
     13         "commonDefs": [
     14             "APP_API",
     15             "IPLUG_DSP=1",
     16             "IPLUG_EDITOR=1",
     17             "IGRAPHICS_NANOVG",
     18             "NOMINMAX"
     19         ]
     20     },
     21     "configurations": [
     22         {
     23             "name": "Mac",
     24             "includePath": [
     25                 "${commonIncludePaths}",
     26                 "${workspaceFolder}/iPlug2/Dependencies/Build/mac/include/**",
     27                 "${workspaceFolder}/iPlug2/Dependencies/IGraphics/MetalNanoVG/src/"
     28             ],
     29             "defines": [
     30                 "${commonDefs}",
     31                 "OS_MAC",
     32                 "IGRAPHICS_METAL"
     33             ],
     34             "macFrameworkPath": [
     35             ],
     36             "intelliSenseMode": "clang-x64",
     37             "compilerPath": "/usr/bin/clang",
     38             "cStandard": "c11",
     39             "cppStandard": "c++17"
     40         },
     41         {
     42             "name": "Win32",
     43             "includePath": [
     44                 "${commonIncludePaths}"
     45             ],
     46             "defines": [
     47                 "${commonDefs}",
     48                 "OS_WIN",
     49                 "IGRAPHICS_GL2"
     50             ],
     51             "intelliSenseMode": "msvc-x64",
     52             "compilerPath": "/usr/bin/clang",
     53             "cStandard": "c11",
     54             "cppStandard": "c++17"
     55         },
     56         {
     57             "name": "WASM",
     58             "includePath": [
     59                 "${commonIncludePaths}",
     60                 "/emsdk/upstream/emscripten/system/include"
     61             ],
     62             "defines": [
     63                 "${commonDefs}",
     64                 "OS_WEB",
     65                 "IGRAPHICS_GLES2"
     66             ],
     67             "intelliSenseMode": "clang-x64",
     68             "compilerPath": "/emsdk/upstream/bin/clang",
     69             "cStandard": "c11",
     70             "cppStandard": "c++17"
     71         }
     72     ],
     73     "version": 4
     74 }