]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/stl_interfaces/example/CMakeLists.txt
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / libs / stl_interfaces / example / CMakeLists.txt
diff --git a/ceph/src/boost/libs/stl_interfaces/example/CMakeLists.txt b/ceph/src/boost/libs/stl_interfaces/example/CMakeLists.txt
new file mode 100644 (file)
index 0000000..f24b8d4
--- /dev/null
@@ -0,0 +1,35 @@
+# Copyright (C) 2019 T. Zachary Laine
+#
+# Distributed under the Boost Software License, Version 1.0. (See
+# accompanying file LICENSE_1_0.txt or copy at
+# http://www.boost.org/LICENSE_1_0.txt)
+include_directories(${CMAKE_HOME_DIRECTORY})
+
+include(CTest)
+
+enable_testing()
+
+add_custom_target(run_examples COMMAND ${CMAKE_CTEST_COMMAND} -VV -C ${CMAKE_CFG_INTDIR})
+
+macro(add_sample name)
+    add_executable(${name} ${name}.cpp)
+    target_link_libraries(${name} stl_interfaces)
+    set_property(TARGET ${name} PROPERTY CXX_STANDARD ${CXX_STD})
+    add_test(${name} ${CMAKE_CURRENT_BINARY_DIR}/${name})
+    if (clang_on_linux)
+        target_link_libraries(${name} c++)
+    endif ()
+endmacro()
+
+add_sample(repeated_chars_iterator)
+add_sample(filtered_int_iterator)
+add_sample(node_iterator)
+add_sample(random_access_iterator)
+add_sample(interoperability)
+add_sample(zip_proxy_iterator)
+add_sample(back_insert_iterator)
+add_sample(reverse_iterator)
+
+add_sample(drop_while_view)
+
+add_sample(static_vector)