aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/failing build/4 cmake subproject isolation/subprojects/cmMod/cmMod.cpp
blob: a668203d10e0f4f47e6eb2974b33a04b03ca19d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "cmMod.hpp"
#include "fileA.hpp"

using namespace std;

cmModClass::cmModClass(string foo) {
  str = foo + SOME_DEFINE;
}

string cmModClass::getStr() const {
  return str;
}