mirror of
https://github.com/usatiuk/psil.git
synced 2025-10-28 02:37:48 +01:00
35 lines
537 B
CMake
35 lines
537 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
|
|
)
|
|
|
|
add_executable(
|
|
GCTest
|
|
GCTest.cpp
|
|
)
|
|
target_link_libraries(
|
|
GCTest
|
|
vm
|
|
GTest::gtest_main
|
|
)
|
|
|
|
include(GoogleTest)
|
|
gtest_discover_tests(VMTest)
|
|
gtest_discover_tests(VMWithParserTest)
|
|
gtest_discover_tests(GCTest)
|