Files
psil/test/vm/CMakeLists.txt
2023-12-23 19:03:13 +01:00

24 lines
378 B
CMake

add_executable(
VMTest
VMTest.cpp
)
target_link_libraries(
VMTest
vm
GTest::gtest_main
)
add_executable(
VMWithParserTest
VMWithParserTest.cpp
)
target_link_libraries(
VMWithParserTest
vm
GTest::gtest_main
)
include(GoogleTest)
gtest_discover_tests(VMTest)
gtest_discover_tests(VMWithParserTest)