From 6c0d556e956eaf1f4eea734d7313d258dd75b878 Mon Sep 17 00:00:00 2001 From: fulup Date: Tue, 27 Jun 2017 14:24:38 +0200 Subject: Work in Progress --- HighLevel-afb/CMakeLists.txt | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'HighLevel-afb/CMakeLists.txt') diff --git a/HighLevel-afb/CMakeLists.txt b/HighLevel-afb/CMakeLists.txt index 9b540e3..9d7af4c 100644 --- a/HighLevel-afb/CMakeLists.txt +++ b/HighLevel-afb/CMakeLists.txt @@ -16,26 +16,28 @@ # limitations under the License. ########################################################################### + # Add target to project dependency list -PROJECT_TARGET_ADD(audio-afb) +PROJECT_TARGET_ADD(audio) # Define project Targets - ADD_LIBRARY(audio-afb MODULE HighLevelApiConf.c HighLevelBinding.c) + ADD_LIBRARY(audio MODULE HighLevelApiConf.c HighLevelBinding.c) # Binder exposes a unique public entry point - SET_TARGET_PROPERTIES(audio-afb PROPERTIES + SET_TARGET_PROPERTIES(audio PROPERTIES PREFIX "afb-" LABELS "BINDING" LINK_FLAGS ${BINDINGS_LINK_FLAG} OUTPUT_NAME ${TARGET_NAME} + ) # Library dependencies (include updates automatically) - TARGET_LINK_LIBRARIES(audio-afb - audio-interface + TARGET_LINK_LIBRARIES(audio + audio-inter ${link_libraries} ) # installation directory - INSTALL(TARGETS audio-afb + INSTALL(TARGETS audio LIBRARY DESTINATION ${BINDINGS_INSTALL_DIR}) -- cgit 1.2.3-korg