Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which settings can I set to Codeanywhere project config for C++?

Hi there I am currently using Codeanywhere as an on-the-fly IDE for C++, to be able to easily code between different devices. While setting the Codeanywhere environment, I ran into the "Project Config" file (that gear icon beside "Run Project" button), and I havent found nothing on this file's parameters.

I'm wondering if using this I could set compile and run settings (something like Visual Studio Code).

Am I missing an obscure documentation page?

Also could anyone explain those default settings?

Project Config C++ file

    {
      "run": [{
        "default": true,
        "devbox": "cpp_test"
      }]
    }

Thanks!

like image 496
Danmaxis Avatar asked Nov 08 '22 09:11

Danmaxis


1 Answers

This is most useful when combined with the undef option in order to suppress warnings for project-specific global variables. Setting an entry to true enables reading and writing to that variable. Setting it to false will trigger JSHint to consider that variable read-only.

like image 92
Ziad Emad Avatar answered Nov 14 '22 21:11

Ziad Emad