mirror of https://github.com/sipwise/sems.git
git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@1116 8eb893ce-cfd4-0310-b710-fb5ebe64c474sayer/1.4-spce2.6
parent
f505535605
commit
8c338e4912
@ -0,0 +1,12 @@
|
||||
project (SEMS)
|
||||
|
||||
set(SEMS_VERSION 1.1.0-pre)
|
||||
# todo: get build arch
|
||||
set(ARCH 32)
|
||||
set(OS 1)
|
||||
|
||||
set(CMAKE_VERBOSE_MAKEFILE ON)
|
||||
|
||||
|
||||
add_subdirectory (core)
|
||||
|
||||
@ -0,0 +1,60 @@
|
||||
|
||||
set (sems_SRCS
|
||||
AmAdvancedAudio.cpp
|
||||
AmApi.cpp
|
||||
AmArg.cpp
|
||||
AmAudio.cpp
|
||||
AmAudioFile.cpp
|
||||
AmAudioMixIn.cpp
|
||||
AmB2ABSession.cpp
|
||||
AmB2BSession.cpp
|
||||
AmBufferedAudio.cpp
|
||||
AmCachedAudioFile.cpp
|
||||
AmCallWatcher.cpp
|
||||
AmConferenceChannel.cpp
|
||||
AmConferenceStatus.cpp
|
||||
AmConfig.cpp
|
||||
AmConfigReader.cpp
|
||||
AmDtmfDetector.cpp
|
||||
AmEvent.cpp
|
||||
AmEventDispatcher.cpp
|
||||
AmEventQueue.cpp
|
||||
AmIcmpWatcher.cpp
|
||||
AmJitterBuffer.cpp
|
||||
AmMediaProcessor.cpp
|
||||
AmMultiPartyMixer.cpp
|
||||
AmPlaylist.cpp
|
||||
AmPlayoutBuffer.cpp
|
||||
AmPlugIn.cpp
|
||||
AmPrecodedFile.cpp
|
||||
AmPromptCollection.cpp
|
||||
AmRingTone.cpp
|
||||
AmRtpAudio.cpp
|
||||
AmRtpPacket.cpp
|
||||
AmRtpReceiver.cpp
|
||||
AmRtpStream.cpp
|
||||
AmSdp.cpp
|
||||
AmServer.cpp
|
||||
AmSession.cpp
|
||||
AmSessionContainer.cpp
|
||||
AmSipDialog.cpp
|
||||
AmSipDispatcher.cpp
|
||||
AmSipMsg.cpp
|
||||
AmThread.cpp
|
||||
AmUAC.cpp
|
||||
AmUtils.cpp
|
||||
AmZRTP.cpp
|
||||
LowcFE.cpp
|
||||
log.cpp
|
||||
sems.cpp
|
||||
)
|
||||
|
||||
include_directories (${SEMS_SOURCE_DIR}/core/ampi)
|
||||
include_directories (${SEMS_SOURCE_DIR}/core/amci)
|
||||
|
||||
configure_file( config.h.cmake ${SEMS_SOURCE_DIR}/core/config.h )
|
||||
|
||||
add_executable (sems ${sems_SRCS})
|
||||
target_link_libraries(sems ${CMAKE_DL_LIBS} pthread stdc++ m)
|
||||
|
||||
add_subdirectory (plug-in)
|
||||
@ -0,0 +1,8 @@
|
||||
#ifndef CONFIG_H
|
||||
#define CONFIG_H
|
||||
|
||||
#define SEMS_VERSION "1.1.0-pre"
|
||||
#define OS "Linux"
|
||||
#define ARCH "32"
|
||||
|
||||
#endif // CONFIG_H
|
||||
@ -0,0 +1,8 @@
|
||||
#ifndef CONFIG_H
|
||||
#define CONFIG_H
|
||||
|
||||
#cmakedefine SEMS_VERSION "@SEMS_VERSION@"
|
||||
#cmakedefine OS "@CMAKE_SYSTEM_NAME@"
|
||||
#cmakedefine ARCH "@ARCH@"
|
||||
|
||||
#endif // CONFIG_H
|
||||
@ -0,0 +1 @@
|
||||
add_subdirectory (wav)
|
||||
@ -0,0 +1,11 @@
|
||||
set (wav_SRCS
|
||||
g711.c
|
||||
wav.c
|
||||
wav_hdr.c
|
||||
)
|
||||
|
||||
add_library(wav SHARED ${wav_SRCS})
|
||||
set_target_properties(wav PROPERTIES OUTPUT_NAME "wav")
|
||||
set_target_properties(wav PROPERTIES PREFIX "")
|
||||
target_link_libraries(wav ${CMAKE_DL_LIBS} pthread stdc++ m)
|
||||
|
||||
Loading…
Reference in new issue