summaryrefslogtreecommitdiffstats
path: root/test cases/cmake/19 advanced options/subprojects/cmOpts/main.cpp
blob: 497d1cee0be08861fc0c72c570e49b4882715598 (plain)
1
2
3
4
5
6
7
8
9
10
#include <iostream>
#include "cmMod.hpp"

using namespace std;

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