Add forcefallback wrap_mode option in meson.build

This commit is contained in:
ado
2023-02-01 01:22:43 +01:00
parent 6efb39b2db
commit 7831bbd735
3 changed files with 8 additions and 2 deletions

View File

@@ -1,7 +1,12 @@
#pragma once
#include <cstdlib>
#include <cstring>
#ifdef CMAKE_GITHUB_CI
#include <doctest/doctest.h>
#else
#include <doctest.h>
#endif
struct buffer {
char* data_{nullptr};

View File

@@ -1,2 +1,2 @@
#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
#include <doctest/doctest.h>
#include <doctest.h>