2017-06-23 23:26:34 +00:00
|
|
|
cmake_minimum_required(VERSION 3.1 FATAL_ERROR)
|
2017-05-26 23:06:14 +00:00
|
|
|
|
|
|
|
add_library(ACLTransportCommonTestLib
|
|
|
|
Common.cpp
|
|
|
|
MimeUtils.cpp
|
|
|
|
TestableAttachmentManager.cpp
|
|
|
|
TestableAttachmentWriter.cpp
|
|
|
|
TestableMessageObserver.cpp)
|
|
|
|
target_include_directories(ACLTransportCommonTestLib PUBLIC
|
|
|
|
"${ACL_SOURCE_DIR}/include")
|
|
|
|
target_link_libraries(ACLTransportCommonTestLib
|
|
|
|
AVSCommon
|
|
|
|
gtest_main
|
|
|
|
gmock_main)
|