summaryrefslogtreecommitdiffstats
path: root/test cases/cmake/6 object library no dep/main.cpp
blob: 9933ab457c2cb4b536b179d344acc9fe60614fb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdlib.h>
#include <iostream>
#include "libA.hpp"
#include "libB.hpp"

using namespace std;

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