aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/hello/src/main.cpp
blob: c08389c00def35d5ddac2205a6500426c620e670 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "foo.h"
#include <stdio.h>

#ifndef HAVE_MAIN_CPP
#   error missing define HAVE_MAIN_CPP
#endif

int main()
{
    someUsefulFunction();
#ifdef _DEBUG
    puts("Hello World! (debug version)");
#else
    puts("Hello World! (release version)");
#endif
}