summaryrefslogtreecommitdiff
path: root/tests/auto/blackbox/testdata-providers/qbspkgconfig-module-provider/libs/libA.cpp
blob: 0c5274415945ad32e24030087bd011dab1dcadc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "libA.h"

#include <iostream>

void foo()
{
    std::cout << "hello from foo: ";
#ifdef MYLIB_FRAMEWORK
    std::cout << "bundled: yes";
#else
    std::cout << "bundled: no";
#endif
    std::cout << std::endl;
}