23 lines
1.0 KiB
CMake
23 lines
1.0 KiB
CMake
|
|
###############################################################################
|
||
|
|
# gtest_stream_addr
|
||
|
|
###############################################################################
|
||
|
|
|
||
|
|
add_executable(gtest_stream_addr gtest_stream_addr.cpp)
|
||
|
|
target_include_directories(gtest_stream_addr PUBLIC ${CMAKE_SOURCE_DIR}/common/include)
|
||
|
|
target_link_libraries(gtest_stream_addr common gtest)
|
||
|
|
|
||
|
|
###############################################################################
|
||
|
|
# gtest_stream_table
|
||
|
|
###############################################################################
|
||
|
|
|
||
|
|
add_executable(gtest_stream_table gtest_stream_table.cpp)
|
||
|
|
target_include_directories(gtest_stream_table PUBLIC ${CMAKE_SOURCE_DIR}/common/include)
|
||
|
|
target_link_libraries(gtest_stream_table common gtest)
|
||
|
|
|
||
|
|
###############################################################################
|
||
|
|
# gtest_discover_tests
|
||
|
|
###############################################################################
|
||
|
|
|
||
|
|
include(GoogleTest)
|
||
|
|
gtest_discover_tests(gtest_stream_addr)
|
||
|
|
gtest_discover_tests(gtest_stream_table)
|