Can I use the Qt Creator IDE for non-GUI programming? Now, compiling "Hello world" like plain C project:
#include <stdio.h>
int main(void)
{
printf("Hello World!\n");
return 0;
}
I get an error
:-1: error: Circular all <- project dependency dropped.
What did I do wrong?
I found the solution. In Tools - Options - Environment in Terminal a wrote xterm -e and it worked :) Thanks for all.
#include <stdio.h>to the top?