summaryrefslogtreecommitdiffstats
path: root/test cases/cmake/3 advanced no dep/subprojects/cmMod/main.cpp
blob: d3e67ca32e45d1d4f7cd21662a74d3c1d3e4d4cd (plain)
1
2
3
4
5
6
7
8
9
10
#include <iostream>
#include "lib/cmMod.hpp"

using namespace std;

int main(void) {
  cmModClass obj("Hello (LIB TEST)");
  cout << obj.getStr() << endl;
  return 0;
}