set(CMAKE_FOLDER "tests")

add_executable(
  porting-tests
  porting-tests.cpp
)

target_link_libraries(
  porting-tests
  module
  GTest::gtest_main
)

gtest_discover_tests(porting-tests)

add_executable(
  gamespyutils_tests
  gamespyutils_tests.cpp
  ../gamespyutils.cpp
)
target_link_libraries(
  gamespyutils_tests
  GTest::gtest_main
)
gtest_discover_tests(gamespyutils_tests)
