8 lines
270 B
CMake
8 lines
270 B
CMake
file(GLOB_RECURSE SOURCES "src/*.cpp")
|
|
|
|
find_package(GTest REQUIRED)
|
|
add_executable(SimpleLibraryTests ${SOURCES})
|
|
target_link_libraries(SimpleLibraryTests GTest::gtest GTest::gtest_main SimpleLibraryShared)
|
|
add_test(NAME SimpleLibraryTests COMMAND SimpleLibraryTests)
|
|
|