summaryrefslogtreecommitdiff
path: root/common/make/test/project/src/test_cpp.cpp
blob: a514ab66e0492c5c8d892dcfd3a711f1e2902730 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Cesar project {{{
//
// Copyright (C) 2007 Spidcom
//
// <<<Licence>>>
//
// }}}
/// \file    test_cpp.cpp
/// \brief   Test c++ program for build system tests.
/// \ingroup test
#include "common/std.h"
#include "inc/test_make.h"

#include "modules/a/a.h"
#include "modules/b/b.h"

#include <iostream>

int
main (void)
{
    std::cout << "I am a c++ program" << std::endl;
    a_print ();
    b_print ();
    b_shout ();
    return TEST_MAKE_EXIT;
}