2018-07-13 01:31:50 +00:00
|
|
|
remove_definitions(-DENABLE_ESP)
|
|
|
|
|
2018-12-13 10:48:25 +00:00
|
|
|
add_executable(sample-wakeup main.cpp)
|
2018-07-13 01:31:50 +00:00
|
|
|
|
|
|
|
# AVS C++ SDK support
|
|
|
|
pkg_check_modules(AVS_CPP_SDK REQUIRED AlexaClientSDK=1.7.1)
|
|
|
|
#message(AUTHOR_WARNING "AVS_CPP_SDK_LIBRARIES: ${AVS_CPP_SDK_LIBRARIES}")
|
|
|
|
|
|
|
|
target_include_directories(sample-wakeup PUBLIC
|
|
|
|
../sampleapp/include)
|
|
|
|
|
|
|
|
target_link_libraries(sample-wakeup "${AVS_CPP_SDK_LIBRARIES}" tutuClear)
|
|
|
|
|
2018-12-13 10:48:25 +00:00
|
|
|
target_link_libraries(sample-wakeup sampleapp)
|
2018-07-13 01:31:50 +00:00
|
|
|
|
|
|
|
install(TARGETS sample-wakeup DESTINATION bin)
|