2017-06-23 23:26:34 +00:00
|
|
|
cmake_minimum_required(VERSION 3.1 FATAL_ERROR)
|
2017-05-05 17:31:58 +00:00
|
|
|
|
|
|
|
add_library(ADSLTestCommon
|
|
|
|
MockDirectiveHandler.cpp)
|
|
|
|
target_include_directories(ADSLTestCommon PUBLIC
|
|
|
|
"${ADSL_SOURCE_DIR}/test/common"
|
|
|
|
"${ADSL_INCLUDE_DIRS}"
|
|
|
|
"${AVSCommon_INCLUDE_DIRS}")
|
|
|
|
target_link_libraries(ADSLTestCommon
|
|
|
|
ADSL
|
|
|
|
AVSCommon
|
|
|
|
gtest_main
|
|
|
|
gmock_main)
|