aboutsummaryrefslogtreecommitdiff
path: root/contrib/iostream3/test/find_package_test.cmake.in
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/iostream3/test/find_package_test.cmake.in')
-rw-r--r--contrib/iostream3/test/find_package_test.cmake.in24
1 files changed, 24 insertions, 0 deletions
diff --git a/contrib/iostream3/test/find_package_test.cmake.in b/contrib/iostream3/test/find_package_test.cmake.in
new file mode 100644
index 000000000000..9b668788b381
--- /dev/null
+++ b/contrib/iostream3/test/find_package_test.cmake.in
@@ -0,0 +1,24 @@
+cmake_minimum_required(VERSION 3.12...3.31)
+
+project(
+ iostream_find_package
+ LANGUAGES CXX
+ VERSION @iostreamV3_VERSION@)
+
+option(ZLIB_IOSTREAM_BUILD_SHARED "" @ZLIB_IOSTREAM_BUILD_SHARED@)
+option(ZLIB_IOSTREAM_BUILD_STATIC "" @ZLIB_IOSTREAM_BUILD_STATIC@)
+
+set(IOSTREAM_SRCS
+ @iostreamV3_SOURCE_DIR@/test.cc)
+
+if(ZLIB_IOSTREAM_BUILD_SHARED)
+ find_package(iostreamv3 REQUIRED COMPONENTS shared CONFIG)
+ add_executable(test_example ${IOSTREAM_SRCS})
+ target_link_libraries(test_example IOSTREAMV3::IOSTREAMV3)
+endif(ZLIB_IOSTREAM_BUILD_SHARED)
+
+if(ZLIB_IOSTREAM_BUILD_STATIC)
+ find_package(iostreamv3 REQUIRED COMPONENTS static CONFIG)
+ add_executable(test_example_static ${IOSTREAM_SRCS})
+ target_link_libraries(test_example_static IOSTREAMV3::IOSTREAMV3STATIC)
+endif(ZLIB_IOSTREAM_BUILD_STATIC)