summaryrefslogtreecommitdiffstats
path: root/test cases/cmake/8 custom command/main.cpp
blob: 7558d60cbb59e6ce87c1fcd276da92e0ec5c27a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>
#include <cmMod.hpp>

using namespace std;

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