What settings can be configured to configure a Codeanywhere project for C ++?

Hi, I am currently using Codeanywhere as an on-line IDE for C ++ to be able to easily code between different devices. When installing the Codeanywhere environment, I came across the Project Configuration file (the gear icon next to the Run Project button) and I did not find anything in these file settings.

I am wondering if I would use this, I could set the compilation and launch options (something like Visual Studio code).

Am I missing a page with obscure documentation?

Can you also explain these default settings?

Project Config C++ file { "run": [{ "default": true, "devbox": "cpp_test" }] } 

Thanks!

+5
source share
2 answers

This is most useful when combined with the undef option to suppress warnings for global project-specific variables. Setting the record to true allows you to read and write this variable. Setting it to false will cause JSHint to consider this variable as read-only.

+1
source

I'm also trying to somehow configure my c ++ projects to run in CodeAnywhere, instead of typing a.out via SSH Terminal against the container ... while I wait for the support service to get an answer

0
source

Source: https://habr.com/ru/post/1275880/


All Articles