21 lines
619 B
CMake
Executable File
21 lines
619 B
CMake
Executable File
remove_definitions(-DENABLE_ESP)
|
|
|
|
add_executable(sample-wakeup
|
|
main.cpp
|
|
../sampleapp/src/ConsolePrinter.cpp
|
|
../sampleapp/src/AlsaMicrophoneWrapper.cpp
|
|
)
|
|
|
|
# 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)
|
|
|
|
target_link_libraries(sample-wakeup TUTUCLEAR)
|
|
target_link_libraries(sample-wakeup ConfigUtils)
|
|
|
|
install(TARGETS sample-wakeup DESTINATION bin) |