summaryrefslogtreecommitdiff
path: root/test cases/cmake/10 header only/main.cpp
blob: 315c0f7dcb4ee49dc5231ddbdd69d7eabe5414d3 (plain)
1
2
3
4
5
6
7
8
9
10
#include <iostream>
#include <cmMod.hpp>

using namespace std;

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