Migrate to latest project structure

This commit is contained in:
2025-01-08 12:56:53 +01:00
parent be5f03a64e
commit be496d3e12
15 changed files with 628 additions and 65 deletions

8
tests/src/main.cpp Normal file
View File

@ -0,0 +1,8 @@
#define BOOST_TEST_MODULE My Test
#define BOOST_TEST_DYN_LINK
#include <boost/test/unit_test.hpp>
BOOST_AUTO_TEST_CASE(first_test)
{
BOOST_TEST(1 == 1);
}