diff options
Diffstat (limited to 'Utilities/cm3p/cppdap')
-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 |