Fix macos build

This commit is contained in:
Georg Hagen
2024-08-15 00:28:20 +02:00
parent 840ff67f01
commit ea11bd4527
7 changed files with 19 additions and 18 deletions

11
tests/VersionTests.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include <catch2/catch_all.hpp>
#include "Base/Version.hpp"
using namespace OpenVulkano;
TEST_CASE("Version Test", "[Version]")
{
Version v("v1.2.3");
CHECK(v == Version("1.2.3"));
}

View File