This commit is contained in:
2023-12-23 10:50:28 +01:00
commit 2685cedba4
17 changed files with 497 additions and 0 deletions

12
test/vm/CMakeLists.txt Normal file
View File

@@ -0,0 +1,12 @@
add_executable(
VMTest
VMTest.cpp
)
target_link_libraries(
VMTest
vm
GTest::gtest_main
)
include(GoogleTest)
gtest_discover_tests(VMTest)