]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/jaegertracing/opentelemetry-cpp/third_party/nlohmann-json/test/cmake_import/project/CMakeLists.txt
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / third_party / nlohmann-json / test / cmake_import / project / CMakeLists.txt
diff --git a/ceph/src/jaegertracing/opentelemetry-cpp/third_party/nlohmann-json/test/cmake_import/project/CMakeLists.txt b/ceph/src/jaegertracing/opentelemetry-cpp/third_party/nlohmann-json/test/cmake_import/project/CMakeLists.txt
new file mode 100644 (file)
index 0000000..fe892fc
--- /dev/null
@@ -0,0 +1,12 @@
+cmake_minimum_required(VERSION 3.1)
+
+project(DummyImport CXX)
+
+find_package(nlohmann_json REQUIRED)
+
+add_executable(with_namespace_target main.cpp)
+target_link_libraries(with_namespace_target nlohmann_json::nlohmann_json)
+
+add_executable(without_namespace_target main.cpp)
+target_link_libraries(without_namespace_target nlohmann_json)
+