pf-core/libs/common/CMakeLists.txt
Luís Murta 65005e9ba7
Command pattern started
Added virtual base class and first implementation.
2023-07-31 21:33:35 +01:00

9 lines
253 B
CMake

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)