First build that actually works. SDL_main errors before but didn't figure out the cause.

This commit is contained in:
Zed A. Shaw 2025-01-02 11:47:02 -05:00
commit 6b181382bd
21 changed files with 2853 additions and 0 deletions

9
tests/base.cpp Normal file
View file

@ -0,0 +1,9 @@
#include <catch2/catch_test_macros.hpp>
#include <fmt/core.h>
#include <string>
using namespace fmt;
TEST_CASE("base test", "[base]") {
REQUIRE(1 == 1);
}