diff options
author | Brad King <brad.king@kitware.com> | 2023-05-19 14:33:13 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-05-26 13:36:14 (GMT) |
commit | 5ec69eb58c4d863e9f8f278b7c78d08f8cedd3f4 (patch) | |
tree | 204366b19fba81e4374cd44cb5816e325bfb258f /Utilities/cm3p | |
parent | 3381e6bd5cbfa1694f07c97a19747adda10b06f2 (diff) | |
download | CMake-5ec69eb58c4d863e9f8f278b7c78d08f8cedd3f4.zip CMake-5ec69eb58c4d863e9f8f278b7c78d08f8cedd3f4.tar.gz CMake-5ec69eb58c4d863e9f8f278b7c78d08f8cedd3f4.tar.bz2 |
cppdap: Build as part of CMake or use external installation
Add `cm3p/` headers to use the selected copy of the library.
Co-authored-by: Glen Chung <kuchung@microsoft.com>
Diffstat (limited to 'Utilities/cm3p')
-rw-r--r-- | Utilities/cm3p/cppdap/dap.h | 11 | ||||
-rw-r--r-- | Utilities/cm3p/cppdap/future.h | 11 | ||||
-rw-r--r-- | Utilities/cm3p/cppdap/io.h | 11 | ||||
-rw-r--r-- | Utilities/cm3p/cppdap/optional.h | 11 | ||||
-rw-r--r-- | Utilities/cm3p/cppdap/protocol.h | 11 | ||||
-rw-r--r-- | Utilities/cm3p/cppdap/session.h | 11 | ||||
-rw-r--r-- | Utilities/cm3p/cppdap/types.h | 11 |
7 files changed, 77 insertions, 0 deletions
diff --git a/Utilities/cm3p/cppdap/dap.h b/Utilities/cm3p/cppdap/dap.h new file mode 100644 index 0000000..84fd332 --- /dev/null +++ b/Utilities/cm3p/cppdap/dap.h @@ -0,0 +1,11 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#pragma once + +/* Use the cppdap library configured for CMake. */ +#include "cmThirdParty.h" +#ifdef CMAKE_USE_SYSTEM_CPPDAP +# include <dap/dap.h> // IWYU pragma: export +#else +# include <cmcppdap/include/dap/dap.h> // IWYU pragma: export +#endif diff --git a/Utilities/cm3p/cppdap/future.h b/Utilities/cm3p/cppdap/future.h new file mode 100644 index 0000000..ad45b6b --- /dev/null +++ b/Utilities/cm3p/cppdap/future.h @@ -0,0 +1,11 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#pragma once + +/* Use the cppdap library configured for CMake. */ +#include "cmThirdParty.h" +#ifdef CMAKE_USE_SYSTEM_CPPDAP +# include <dap/future.h> // IWYU pragma: export +#else +# include <cmcppdap/include/dap/future.h> // IWYU pragma: export +#endif diff --git a/Utilities/cm3p/cppdap/io.h b/Utilities/cm3p/cppdap/io.h new file mode 100644 index 0000000..e0401f8 --- /dev/null +++ b/Utilities/cm3p/cppdap/io.h @@ -0,0 +1,11 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#pragma once + +/* Use the cppdap library configured for CMake. */ +#include "cmThirdParty.h" +#ifdef CMAKE_USE_SYSTEM_CPPDAP +# include <dap/io.h> // IWYU pragma: export +#else +# include <cmcppdap/include/dap/io.h> // IWYU pragma: export +#endif diff --git a/Utilities/cm3p/cppdap/optional.h b/Utilities/cm3p/cppdap/optional.h new file mode 100644 index 0000000..777184d --- /dev/null +++ b/Utilities/cm3p/cppdap/optional.h @@ -0,0 +1,11 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#pragma once + +/* Use the cppdap library configured for CMake. */ +#include "cmThirdParty.h" +#ifdef CMAKE_USE_SYSTEM_CPPDAP +# include <dap/optional.h> // IWYU pragma: export +#else +# include <cmcppdap/include/dap/optional.h> // IWYU pragma: export +#endif diff --git a/Utilities/cm3p/cppdap/protocol.h b/Utilities/cm3p/cppdap/protocol.h new file mode 100644 index 0000000..da70369 --- /dev/null +++ b/Utilities/cm3p/cppdap/protocol.h @@ -0,0 +1,11 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#pragma once + +/* Use the cppdap library configured for CMake. */ +#include "cmThirdParty.h" +#ifdef CMAKE_USE_SYSTEM_CPPDAP +# include <dap/protocol.h> // IWYU pragma: export +#else +# include <cmcppdap/include/dap/protocol.h> // IWYU pragma: export +#endif diff --git a/Utilities/cm3p/cppdap/session.h b/Utilities/cm3p/cppdap/session.h new file mode 100644 index 0000000..d4468e7 --- /dev/null +++ b/Utilities/cm3p/cppdap/session.h @@ -0,0 +1,11 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#pragma once + +/* Use the cppdap library configured for CMake. */ +#include "cmThirdParty.h" +#ifdef CMAKE_USE_SYSTEM_CPPDAP +# include <dap/session.h> // IWYU pragma: export +#else +# include <cmcppdap/include/dap/session.h> // IWYU pragma: export +#endif diff --git a/Utilities/cm3p/cppdap/types.h b/Utilities/cm3p/cppdap/types.h new file mode 100644 index 0000000..3fc2a88 --- /dev/null +++ b/Utilities/cm3p/cppdap/types.h @@ -0,0 +1,11 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#pragma once + +/* Use the cppdap library configured for CMake. */ +#include "cmThirdParty.h" +#ifdef CMAKE_USE_SYSTEM_CPPDAP +# include <dap/types.h> // IWYU pragma: export +#else +# include <cmcppdap/include/dap/types.h> // IWYU pragma: export +#endif |