Yank out our copy of doctest, use system copy

This commit is contained in:
nick black 2020-02-17 21:04:54 -05:00
parent 438ee1257b
commit 39d5063518
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC
2 changed files with 2 additions and 1 deletions

View File

@ -26,6 +26,7 @@ pkg_check_modules(AVUTIL REQUIRED libavutil>=56.0)
pkg_check_modules(SWSCALE REQUIRED libswscale>=5.0)
endif()
find_library(LIBRT rt)
find_package(doctest REQUIRED)
# libnotcurses
file(GLOB NCSRCS CONFIGURE_DEPENDS src/lib/*.c)

View File

@ -1,9 +1,9 @@
#ifndef NOTCURSES_TEST_MAIN
#define NOTCURSES_TEST_MAIN
#include "doctest.h"
#include <unistd.h>
#include <notcurses.h>
#include <doctest/doctest.h>
char* find_data(const char* datum);