8 lines
242 B
CMake
8 lines
242 B
CMake
add_executable(gtest_log gtest_log.cpp)
|
|
target_link_libraries(gtest_log log gtest)
|
|
|
|
include(GoogleTest)
|
|
gtest_discover_tests(gtest_log)
|
|
|
|
file(COPY ./conf/log_file.toml DESTINATION ./conf/)
|
|
file(COPY ./conf/log_stderr.toml DESTINATION ./conf/) |