From daed7030914b6dea062c69c6c36c2cb5ee3aa9c4 Mon Sep 17 00:00:00 2001 From: Peter Lemenkov Date: Mon, 12 Oct 2009 11:06:36 +0000 Subject: [PATCH] - Added CMake configs for apps/twit (still disabled by default). Signed-off-by: Peter Lemenkov git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@1527 8eb893ce-cfd4-0310-b710-fb5ebe64c474 --- apps/twit/CMakeLists.txt | 13 +++++++++++++ apps/twit/etc/twit.conf.cmake | 12 ++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 apps/twit/CMakeLists.txt create mode 100644 apps/twit/etc/twit.conf.cmake diff --git a/apps/twit/CMakeLists.txt b/apps/twit/CMakeLists.txt new file mode 100644 index 00000000..fdbd954c --- /dev/null +++ b/apps/twit/CMakeLists.txt @@ -0,0 +1,13 @@ +set (audio_files +twit_account_msg.wav +twit_err_msg.wav +twit_ok_msg.wav +twit_posting_msg.wav +welcome_msg.wav +) + +SET(sems_module_name twit) +SET(ivr_files twit) +INCLUDE(${CMAKE_SOURCE_DIR}/cmake/config.rules.txt) +INCLUDE(${CMAKE_SOURCE_DIR}/cmake/audio.rules.txt) +INCLUDE(${CMAKE_SOURCE_DIR}/cmake/ivr.rules.txt) diff --git a/apps/twit/etc/twit.conf.cmake b/apps/twit/etc/twit.conf.cmake new file mode 100644 index 00000000..5b5e7232 --- /dev/null +++ b/apps/twit/etc/twit.conf.cmake @@ -0,0 +1,12 @@ +# url where recordings will be available +base_url = https://zaraa.iptel.org/twit/ + +#path to record, should then show up at the above url +rec_path = /var/www/twits/ + +# prompts +welcome_msg = ${SEMS_AUDIO_PREFIX}/sems/audio/twit/twit_welcome.wav +twit_err_msg = ${SEMS_AUDIO_PREFIX}/sems/audio/twit/twit_error.wav +twit_account_msg = ${SEMS_AUDIO_PREFIX}/sems/audio/twit/twit_account_msg.wav +twit_ok_msg = ${SEMS_AUDIO_PREFIX}/sems/audio/twit/twit_ok.wav +twit_posting_msg = ${SEMS_AUDIO_PREFIX}/sems/audio/twit/twit_posting.wav