Your ROOT_URL in app.ini is https://scm.trinitydesktop.org/gitea/ but you are visiting https://scm.trinitydesktop.net/gitea/TDE/tdevelop/src/commit/f08b30edb9f422128083050320681b6bacd06d1d/languages/cpp/app_templates/qmakesimple/main.cpp You should set ROOT_URL correctly, otherwise the web may not work correctly.

16 lines
196 B

%{CPP_TEMPLATE}
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
printf("Hello, world!\n");
return EXIT_SUCCESS;
}