123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- // Copyright 2016 Proyectos y Sistemas de Mantenimiento SL (eProsima).
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #ifndef _FASTRTPS_CONFIG_H_
- #define _FASTRTPS_CONFIG_H_
- #define FASTRTPS_VERSION_MAJOR @PROJECT_VERSION_MAJOR@
- #define FASTRTPS_VERSION_MINOR @PROJECT_VERSION_MINOR@
- #define FASTRTPS_VERSION_MICRO @PROJECT_VERSION_PATCH@
- #define FASTRTPS_VERSION_STR "@PROJECT_VERSION@"
- #define GEN_API_VER 1
- // C++14 support defines
- #ifndef HAVE_CXX14
- #define HAVE_CXX14 @HAVE_CXX14@
- #endif
- // C++1Y support defines
- #ifndef HAVE_CXX1Y
- #define HAVE_CXX1Y @HAVE_CXX1Y@
- #endif
- // C++11 support defines
- #ifndef HAVE_CXX11
- #define HAVE_CXX11 @HAVE_CXX11@
- #endif
- // C++0x support defines
- #ifndef HAVE_CXX0X
- #define HAVE_CXX0X @HAVE_CXX0X@
- #endif
- // C++ constexpr support
- #ifndef HAVE_CXX_CONSTEXPR
- #define HAVE_CXX_CONSTEXPR @HAVE_CXX_CONSTEXPR@
- #endif
- #if HAVE_CXX_CONSTEXPR
- #define CONSTEXPR constexpr
- #else
- #define CONSTEXPR const
- #endif
- // Endianness defines
- #ifndef __BIG_ENDIAN__
- #define __BIG_ENDIAN__ @__BIG_ENDIAN__@
- #endif
- // Security
- #ifndef HAVE_SECURITY
- #define HAVE_SECURITY @HAVE_SECURITY@
- #endif
- //Sqlite3 support
- #ifndef HAVE_SQLITE3
- #define HAVE_SQLITE3 @HAVE_SQLITE3@
- #endif
- // TLS support
- #ifndef TLS_FOUND
- #define TLS_FOUND @TLS_FOUND@
- #endif
- // Strict real-time
- #ifndef HAVE_STRICT_REALTIME
- #define HAVE_STRICT_REALTIME @HAVE_STRICT_REALTIME@
- #endif
- // Deprecated macro
- #if __cplusplus >= 201402L
- #define FASTRTPS_DEPRECATED(msg) [[ deprecated(msg) ]]
- #elif defined(__GNUC__) || defined(__clang__)
- #define FASTRTPS_DEPRECATED(msg) __attribute__ ((deprecated(msg)))
- #elif defined(_MSC_VER)
- #define FASTRTPS_DEPRECATED(msg) __declspec(deprecated(msg))
- #else
- #define FASTRTPS_DEPRECATED(msg)
- #endif
- #endif // _FASTRTPS_CONFIG_H_
|