blob: 03b70fa4ea2187e8eda602955d994076a87c3ed9 [file] [log] [blame]
onqtamb43aa042017-03-13 19:04:08 +02001#define DOCTEST_CONFIG_IMPLEMENTATION_IN_DLL
2#include "doctest.h"
3
4#include <cstdio>
onqtam4a655632016-05-26 14:20:52 +03005
6TEST_CASE("dll") {
7 printf("I am a test from the dll!\n");
8}
9
onqtamb43aa042017-03-13 19:04:08 +020010DOCTEST_SYMBOL_EXPORT void from_dll(); // to silence "-Wmissing-declarations" with GCC
11DOCTEST_SYMBOL_EXPORT void from_dll() {} // force the creation of a .lib file with MSVC