cmake_minimum_required(VERSION 3.9)
set (CMAKE_CXX_STANDARD 17)
project(trevisan-extractor)
 
# Fetch GTest
include(FetchContent)
FetchContent_Declare(
  googletest
  URL https://github.com/google/googletest/archive/609281088cfefc76f9d0ce82e1ff6c30cc3591e5.zip
)

set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
FetchContent_MakeAvailable(googletest)

# Link runTests with what we want to test and the GTest and pthread library
add_executable(runTests tests.cpp)
target_link_libraries(runTests trevisan gtest_main)

# Add to CTest
add_test(NAME runTests COMMAND $<TARGET_FILE:runTests> --gtest_output=xml:${CMAKE_CURRENT_BINARY_DIR}/)
