add_library(common INTERFACE) target_include_directories(common INTERFACE include) add_executable(common_test src/command.test.cpp) target_link_libraries(common_test common gtest gmock gtest_main) include(GoogleTest) gtest_discover_tests(common_test)