summaryrefslogtreecommitdiff
path: root/doc/examples/out-of-source-build/files/OutOfSourceProject/main/main.c
blob: a114945e2a1a7d0c5a05f5176b51b948b06231ea (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
int main()
{
   // printf() displays the string inside quotation
#ifdef FULL_PROJECT
   printf("Hello, World! Built from the source root.\n");
#else
   printf("Hello, World! Built from a subdirectory of the source.\n");
#endif   
   return 0;
}