summaryrefslogtreecommitdiff
path: root/test cases/cmake/5 object library/main.cpp
blob: 918f3323eb8ea83f23c81d491326be4d7a25bea9 (plain)
1
2
3
4
5
6
7
8
9
#include <iostream>
#include "libA.hpp"
#include "libB.hpp"

using namespace std;

int main(void) {
  cout << getLibStr() << " -- " << getZlibVers() << endl;
}