14 lines
540 B
CMake
14 lines
540 B
CMake
cmake_minimum_required(VERSION 3.31)
|
|
|
|
project(unittests)
|
|
|
|
find_package(GTest REQUIRED)
|
|
include_directories(${GTEST_INCLUDE_DIRS})
|
|
|
|
add_executable(spf_test tests/spf_test.cpp ../src/Spf.cpp) # Your test file
|
|
target_include_directories(spf_test PRIVATE ../include mocks)
|
|
target_link_libraries(spf_test ${GTEST_LIBRARIES} pthread)
|
|
|
|
add_executable(proxy_test tests/proxy_test.cpp ../src/Proxy.cpp) # Your test file
|
|
target_include_directories(proxy_test PRIVATE ../include mocks)
|
|
target_link_libraries(proxy_test ${GTEST_LIBRARIES} pthread)
|