This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tango-tfe/common/CMakeLists.txt

12 lines
509 B
CMake
Raw Normal View History

2018-10-05 14:34:51 +08:00
add_library(common src/tfe_utils.cpp src/tfe_future.cpp src/tfe_http.cpp src/tfe_plugin.cpp src/tfe_rpc.cpp)
target_include_directories(common PUBLIC ${CMAKE_CURRENT_LIST_DIR}/include)
2018-09-07 17:42:57 +08:00
target_link_libraries(common MESA_handle_logger libevent-static libevent-static-openssl libevent-static-pthreads)
### UNITTEST CASE
add_executable(test-addr test/test_addr.cpp)
target_include_directories(test-addr PRIVATE include)
target_link_libraries(test-addr gtest)
include(GoogleTest)
gtest_discover_tests(test-addr)