From 6afd2bcd984847b042610cc53a2365704a08bf51 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Tue, 14 Apr 2015 21:53:14 +0200 Subject: [PATCH] [DEV] update Catkin --- catkin/CMakeLists.txt | 34 +++++++++++++++++----------------- catkin/package.xml | 2 +- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/catkin/CMakeLists.txt b/catkin/CMakeLists.txt index 01f32e4..e273bec 100644 --- a/catkin/CMakeLists.txt +++ b/catkin/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 2.8.3) -project(drain) +project(audio_drain) set(CMAKE_VERBOSE_MAKEFILE ON) @@ -44,21 +44,21 @@ include_directories( ## Declare a cpp library add_library(${PROJECT_NAME} - ../${PROJECT_NAME}/debug.cpp - ../${PROJECT_NAME}/airtalgo.cpp - ../${PROJECT_NAME}/Algo.cpp - ../${PROJECT_NAME}/ChannelReorder.cpp - ../${PROJECT_NAME}/CircularBuffer.cpp - ../${PROJECT_NAME}/EndPointCallback.cpp - ../${PROJECT_NAME}/EndPoint.cpp - ../${PROJECT_NAME}/EndPointRead.cpp - ../${PROJECT_NAME}/EndPointWrite.cpp - ../${PROJECT_NAME}/FormatUpdate.cpp - ../${PROJECT_NAME}/Process.cpp - ../${PROJECT_NAME}/Resampler.cpp - ../${PROJECT_NAME}/Volume.cpp - ../${PROJECT_NAME}/IOFormatInterface.cpp - ../${PROJECT_NAME}/AutoLogInOut.cpp + ../audio/drain/debug.cpp + ../audio/drain/airtalgo.cpp + ../audio/drain/Algo.cpp + ../audio/drain/ChannelReorder.cpp + ../audio/drain/CircularBuffer.cpp + ../audio/drain/EndPointCallback.cpp + ../audio/drain/EndPoint.cpp + ../audio/drain/EndPointRead.cpp + ../audio/drain/EndPointWrite.cpp + ../audio/drain/FormatUpdate.cpp + ../audio/drain/Process.cpp + ../audio/drain/Resampler.cpp + ../audio/drain/Volume.cpp + ../audio/drain/IOFormatInterface.cpp + ../audio/drain/AutoLogInOut.cpp ) #message("libspeex DSP file: ${LIB_SPEEX_DSP}") @@ -83,7 +83,7 @@ install(TARGETS ${PROJECT_NAME} ) ## Mark cpp header files for installation -install(DIRECTORY ../${PROJECT_NAME}/ +install(DIRECTORY ../audio/drain/ DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} FILES_MATCHING PATTERN "*.h" ) diff --git a/catkin/package.xml b/catkin/package.xml index b33350c..8b0f1c8 100644 --- a/catkin/package.xml +++ b/catkin/package.xml @@ -1,6 +1,6 @@ - drain + audio_drain 0.1.0 Ewol audio basic flow algo (really simple) Edouard DUPIN