diff options
Diffstat (limited to 'Utilities/cm3p')
-rw-r--r-- | Utilities/cm3p/Setup.Configuration.h | 8 | ||||
-rw-r--r-- | Utilities/cm3p/archive.h | 14 | ||||
-rw-r--r-- | Utilities/cm3p/archive_entry.h | 14 | ||||
-rw-r--r-- | Utilities/cm3p/bzlib.h | 14 | ||||
-rw-r--r-- | Utilities/cm3p/curl/curl.h | 14 | ||||
-rw-r--r-- | Utilities/cm3p/expat.h | 14 | ||||
-rw-r--r-- | Utilities/cm3p/json/reader.h | 14 | ||||
-rw-r--r-- | Utilities/cm3p/json/value.h | 14 | ||||
-rw-r--r-- | Utilities/cm3p/json/writer.h | 14 | ||||
-rw-r--r-- | Utilities/cm3p/kwiml/abi.h | 14 | ||||
-rw-r--r-- | Utilities/cm3p/kwiml/int.h | 14 | ||||
-rw-r--r-- | Utilities/cm3p/lzma.h | 14 | ||||
-rw-r--r-- | Utilities/cm3p/rhash.h | 14 | ||||
-rw-r--r-- | Utilities/cm3p/uv.h | 14 | ||||
-rw-r--r-- | Utilities/cm3p/zlib.h | 14 | ||||
-rw-r--r-- | Utilities/cm3p/zstd.h | 14 |
16 files changed, 218 insertions, 0 deletions
diff --git a/Utilities/cm3p/Setup.Configuration.h b/Utilities/cm3p/Setup.Configuration.h new file mode 100644 index 0000000..a5cf058 --- /dev/null +++ b/Utilities/cm3p/Setup.Configuration.h @@ -0,0 +1,8 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#ifndef cm3p_Setup_Configuration_h +#define cm3p_Setup_Configuration_h + +#include <cmvssetup/Setup.Configuration.h> // IWYU pragma: export + +#endif diff --git a/Utilities/cm3p/archive.h b/Utilities/cm3p/archive.h new file mode 100644 index 0000000..956b3ab --- /dev/null +++ b/Utilities/cm3p/archive.h @@ -0,0 +1,14 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#ifndef cm3p_archive_h +#define cm3p_archive_h + +/* Use the libarchive configured for CMake. */ +#include "cmThirdParty.h" +#ifdef CMAKE_USE_SYSTEM_LIBARCHIVE +# include <archive.h> // IWYU pragma: export +#else +# include <cmlibarchive/libarchive/archive.h> // IWYU pragma: export +#endif + +#endif diff --git a/Utilities/cm3p/archive_entry.h b/Utilities/cm3p/archive_entry.h new file mode 100644 index 0000000..230e87a --- /dev/null +++ b/Utilities/cm3p/archive_entry.h @@ -0,0 +1,14 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#ifndef cm3p_archive_entry_h +#define cm3p_archive_entry_h + +/* Use the libarchive configured for CMake. */ +#include "cmThirdParty.h" +#ifdef CMAKE_USE_SYSTEM_LIBARCHIVE +# include <archive_entry.h> // IWYU pragma: export +#else +# include <cmlibarchive/libarchive/archive_entry.h> // IWYU pragma: export +#endif + +#endif diff --git a/Utilities/cm3p/bzlib.h b/Utilities/cm3p/bzlib.h new file mode 100644 index 0000000..2a0f4dd --- /dev/null +++ b/Utilities/cm3p/bzlib.h @@ -0,0 +1,14 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#ifndef cm3p_bzlib_h +#define cm3p_bzlib_h + +/* Use the bzip2 library configured for CMake. */ +#include "cmThirdParty.h" +#ifdef CMAKE_USE_SYSTEM_BZIP2 +# include <bzlib.h> // IWYU pragma: export +#else +# include <cmbzip2/bzlib.h> // IWYU pragma: export +#endif + +#endif diff --git a/Utilities/cm3p/curl/curl.h b/Utilities/cm3p/curl/curl.h new file mode 100644 index 0000000..6e2b822 --- /dev/null +++ b/Utilities/cm3p/curl/curl.h @@ -0,0 +1,14 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#ifndef cm3p_curl_curl_h +#define cm3p_curl_curl_h + +/* Use the curl library configured for CMake. */ +#include "cmThirdParty.h" +#ifdef CMAKE_USE_SYSTEM_CURL +# include <curl/curl.h> // IWYU pragma: export +#else +# include <cmcurl/include/curl/curl.h> // IWYU pragma: export +#endif + +#endif diff --git a/Utilities/cm3p/expat.h b/Utilities/cm3p/expat.h new file mode 100644 index 0000000..32e6fd0 --- /dev/null +++ b/Utilities/cm3p/expat.h @@ -0,0 +1,14 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#ifndef cm3p_expat_h +#define cm3p_expat_h + +/* Use the expat library configured for CMake. */ +#include "cmThirdParty.h" +#ifdef CMAKE_USE_SYSTEM_EXPAT +# include <expat.h> // IWYU pragma: export +#else +# include <cmexpat/lib/expat.h> // IWYU pragma: export +#endif + +#endif diff --git a/Utilities/cm3p/json/reader.h b/Utilities/cm3p/json/reader.h new file mode 100644 index 0000000..0df09ee --- /dev/null +++ b/Utilities/cm3p/json/reader.h @@ -0,0 +1,14 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#ifndef cm3p_json_reader_h +#define cm3p_json_reader_h + +/* Use the jsoncpp library configured for CMake. */ +#include "cmThirdParty.h" +#ifdef CMAKE_USE_SYSTEM_JSONCPP +# include <json/reader.h> // IWYU pragma: export +#else +# include <cmjsoncpp/include/json/reader.h> // IWYU pragma: export +#endif + +#endif diff --git a/Utilities/cm3p/json/value.h b/Utilities/cm3p/json/value.h new file mode 100644 index 0000000..f59bed6 --- /dev/null +++ b/Utilities/cm3p/json/value.h @@ -0,0 +1,14 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#ifndef cm3p_json_value_h +#define cm3p_json_value_h + +/* Use the jsoncpp library configured for CMake. */ +#include "cmThirdParty.h" +#ifdef CMAKE_USE_SYSTEM_JSONCPP +# include <json/value.h> // IWYU pragma: export +#else +# include <cmjsoncpp/include/json/value.h> // IWYU pragma: export +#endif + +#endif diff --git a/Utilities/cm3p/json/writer.h b/Utilities/cm3p/json/writer.h new file mode 100644 index 0000000..7fcc3e2 --- /dev/null +++ b/Utilities/cm3p/json/writer.h @@ -0,0 +1,14 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#ifndef cm3p_json_writer_h +#define cm3p_json_writer_h + +/* Use the jsoncpp library configured for CMake. */ +#include "cmThirdParty.h" +#ifdef CMAKE_USE_SYSTEM_JSONCPP +# include <json/writer.h> // IWYU pragma: export +#else +# include <cmjsoncpp/include/json/writer.h> // IWYU pragma: export +#endif + +#endif diff --git a/Utilities/cm3p/kwiml/abi.h b/Utilities/cm3p/kwiml/abi.h new file mode 100644 index 0000000..6d0dedf --- /dev/null +++ b/Utilities/cm3p/kwiml/abi.h @@ -0,0 +1,14 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#ifndef cm3p_kwiml_abi_h +#define cm3p_kwiml_abi_h + +/* Use the KWIML library configured for CMake. */ +#include "cmThirdParty.h" +#ifdef CMAKE_USE_SYSTEM_KWIML +# include <kwiml/abi.h> // IWYU pragma: export +#else +# include <KWIML/include/kwiml/abi.h> // IWYU pragma: export +#endif + +#endif diff --git a/Utilities/cm3p/kwiml/int.h b/Utilities/cm3p/kwiml/int.h new file mode 100644 index 0000000..4c7c23d --- /dev/null +++ b/Utilities/cm3p/kwiml/int.h @@ -0,0 +1,14 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#ifndef cm3p_kwiml_int_h +#define cm3p_kwiml_int_h + +/* Use the KWIML library configured for CMake. */ +#include "cmThirdParty.h" +#ifdef CMAKE_USE_SYSTEM_KWIML +# include <kwiml/int.h> // IWYU pragma: export +#else +# include <KWIML/include/kwiml/int.h> // IWYU pragma: export +#endif + +#endif diff --git a/Utilities/cm3p/lzma.h b/Utilities/cm3p/lzma.h new file mode 100644 index 0000000..abfacf3 --- /dev/null +++ b/Utilities/cm3p/lzma.h @@ -0,0 +1,14 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#ifndef cm3p_lzma_h +#define cm3p_lzma_h + +/* Use the liblzma configured for CMake. */ +#include "cmThirdParty.h" +#ifdef CMAKE_USE_SYSTEM_LIBLZMA +# include <lzma.h> // IWYU pragma: export +#else +# include <cmliblzma/liblzma/api/lzma.h> // IWYU pragma: export +#endif + +#endif diff --git a/Utilities/cm3p/rhash.h b/Utilities/cm3p/rhash.h new file mode 100644 index 0000000..9d5e411 --- /dev/null +++ b/Utilities/cm3p/rhash.h @@ -0,0 +1,14 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#ifndef cm3p_rhash_h +#define cm3p_rhash_h + +/* Use the LibRHash library configured for CMake. */ +#include "cmThirdParty.h" +#ifdef CMAKE_USE_SYSTEM_LIBRHASH +# include <rhash.h> // IWYU pragma: export +#else +# include <cmlibrhash/librhash/rhash.h> // IWYU pragma: export +#endif + +#endif diff --git a/Utilities/cm3p/uv.h b/Utilities/cm3p/uv.h new file mode 100644 index 0000000..307a09f --- /dev/null +++ b/Utilities/cm3p/uv.h @@ -0,0 +1,14 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#ifndef cm3p_uv_h +#define cm3p_uv_h + +/* Use the libuv library configured for CMake. */ +#include "cmThirdParty.h" +#ifdef CMAKE_USE_SYSTEM_LIBUV +# include <uv.h> // IWYU pragma: export +#else +# include <cmlibuv/include/uv.h> // IWYU pragma: export +#endif + +#endif diff --git a/Utilities/cm3p/zlib.h b/Utilities/cm3p/zlib.h new file mode 100644 index 0000000..fe7baee --- /dev/null +++ b/Utilities/cm3p/zlib.h @@ -0,0 +1,14 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#ifndef cm3p_zlib_h +#define cm3p_zlib_h + +/* Use the zlib library configured for CMake. */ +#include "cmThirdParty.h" +#ifdef CMAKE_USE_SYSTEM_ZLIB +# include <zlib.h> // IWYU pragma: export +#else +# include <cmzlib/zlib.h> // IWYU pragma: export +#endif + +#endif diff --git a/Utilities/cm3p/zstd.h b/Utilities/cm3p/zstd.h new file mode 100644 index 0000000..07cc3e4 --- /dev/null +++ b/Utilities/cm3p/zstd.h @@ -0,0 +1,14 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#ifndef cm3p_zstd_h +#define cm3p_zstd_h + +/* Use the libzstd configured for CMake. */ +#include "cmThirdParty.h" +#ifdef CMAKE_USE_SYSTEM_ZSTD +# include <zstd.h> // IWYU pragma: export +#else +# include <cmzstd/lib/zstd.h> // IWYU pragma: export +#endif + +#endif |