2020-07-17 13:33:56 +00:00
|
|
|
// This file is a part of toml++ and is subject to the the terms of the MIT license.
|
2021-01-02 15:48:47 +00:00
|
|
|
// Copyright (c) Mark Gillard <mark.gillard@outlook.com.au>
|
2020-07-17 13:33:56 +00:00
|
|
|
// See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
|
2021-10-26 13:49:23 +00:00
|
|
|
#include "settings.h"
|
|
|
|
|
2020-07-17 13:33:56 +00:00
|
|
|
#ifdef __clang__
|
|
|
|
#pragma clang diagnostic push
|
|
|
|
#pragma clang diagnostic ignored "-Weverything"
|
2021-10-26 13:49:23 +00:00
|
|
|
#elif defined(__GNUC__)
|
2020-07-21 13:11:32 +00:00
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wall"
|
|
|
|
#pragma GCC diagnostic ignored "-Wextra"
|
|
|
|
#pragma GCC diagnostic ignored "-Wpadded"
|
|
|
|
#pragma GCC diagnostic ignored "-Wfloat-equal"
|
2021-10-26 13:49:23 +00:00
|
|
|
#elif defined(_MSC_VER)
|
|
|
|
#pragma warning(push, 0)
|
2022-10-18 11:04:50 +00:00
|
|
|
#pragma warning(disable : 4619)
|
2021-10-26 13:49:23 +00:00
|
|
|
#pragma warning(disable : 4365)
|
|
|
|
#pragma warning(disable : 4868)
|
|
|
|
#pragma warning(disable : 5105)
|
2022-10-14 10:18:24 +00:00
|
|
|
#pragma warning(disable : 5262)
|
|
|
|
#pragma warning(disable : 5264)
|
2020-07-17 13:33:56 +00:00
|
|
|
#endif
|
|
|
|
|
2022-05-01 12:09:09 +00:00
|
|
|
#if !defined(USE_VENDORED_LIBS) || USE_VENDORED_LIBS
|
2022-05-01 07:35:21 +00:00
|
|
|
#include "../vendor/catch.hpp"
|
2022-05-01 12:09:09 +00:00
|
|
|
#elif __has_include(<Catch2/single_include/catch2/catch.hpp>)
|
|
|
|
#include <Catch2/single_include/catch2/catch.hpp>
|
|
|
|
#elif __has_include(<catch2/catch.hpp>)
|
|
|
|
#include <catch2/catch.hpp>
|
|
|
|
#else
|
|
|
|
#error Catch2 is missing!
|
|
|
|
#endif
|
2020-07-17 13:33:56 +00:00
|
|
|
|
|
|
|
#ifdef __clang__
|
|
|
|
#pragma clang diagnostic pop
|
2021-10-26 13:49:23 +00:00
|
|
|
#elif defined(__GNUC__)
|
2020-07-21 13:11:32 +00:00
|
|
|
#pragma GCC diagnostic pop
|
2021-10-26 13:49:23 +00:00
|
|
|
#elif defined(_MSC_VER)
|
|
|
|
#pragma warning(pop)
|
2020-07-17 13:33:56 +00:00
|
|
|
#endif
|