summaryrefslogtreecommitdiff
path: root/test cases/cmake/6 object library no dep/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/cmake/6 object library no dep/main.cpp')
-rw-r--r--test cases/cmake/6 object library no dep/main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/test cases/cmake/6 object library no dep/main.cpp b/test cases/cmake/6 object library no dep/main.cpp
new file mode 100644
index 000000000..f3836087b
--- /dev/null
+++ b/test cases/cmake/6 object library no dep/main.cpp
@@ -0,0 +1,9 @@
+#include <iostream>
+#include "libA.hpp"
+#include "libB.hpp"
+
+using namespace std;
+
+int main() {
+ cout << getLibStr() << " -- " << getZlibVers() << endl;
+}