mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-19 03:58:08 +00:00
132 lines
4.1 KiB
CMake
132 lines
4.1 KiB
CMake
############################################################################
|
|
# CMakeLists.txt
|
|
# Copyright (C) 2016 Belledonne Communications, Grenoble France
|
|
#
|
|
############################################################################
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
############################################################################
|
|
|
|
set(DAEMON_SOURCE_FILES
|
|
commands/adaptive-jitter-compensation.cc
|
|
commands/adaptive-jitter-compensation.h
|
|
commands/answer.cc
|
|
commands/answer.h
|
|
commands/audio-codec-get.cc
|
|
commands/audio-codec-get.h
|
|
commands/audio-codec-move.cc
|
|
commands/audio-codec-move.h
|
|
commands/audio-codec-set.cc
|
|
commands/audio-codec-set.h
|
|
commands/audio-codec-toggle.cc
|
|
commands/audio-codec-toggle.h
|
|
commands/audio-stream-start.cc
|
|
commands/audio-stream-start.h
|
|
commands/audio-stream-stats.cc
|
|
commands/audio-stream-stats.h
|
|
commands/audio-stream-stop.cc
|
|
commands/audio-stream-stop.h
|
|
commands/auth-infos-clear.cc
|
|
commands/auth-infos-clear.h
|
|
commands/call.cc
|
|
commands/call.h
|
|
commands/call-mute.cc
|
|
commands/call-mute.h
|
|
commands/call-pause.cc
|
|
commands/call-pause.h
|
|
commands/call-resume.cc
|
|
commands/call-resume.h
|
|
commands/call-stats.cc
|
|
commands/call-stats.h
|
|
commands/call-status.cc
|
|
commands/call-status.h
|
|
commands/call-transfer.cc
|
|
commands/call-transfer.h
|
|
commands/cn.cc
|
|
commands/cn.h
|
|
commands/conference.cc
|
|
commands/conference.h
|
|
commands/config.cc
|
|
commands/configcommand.h
|
|
commands/contact.cc
|
|
commands/contact.h
|
|
commands/dtmf.cc
|
|
commands/dtmf.h
|
|
commands/firewall-policy.cc
|
|
commands/firewall-policy.h
|
|
commands/help.cc
|
|
commands/help.h
|
|
commands/ipv6.cc
|
|
commands/ipv6.h
|
|
commands/jitterbuffer.cc
|
|
commands/jitterbuffer.h
|
|
commands/media-encryption.cc
|
|
commands/media-encryption.h
|
|
commands/msfilter-add-fmtp.cc
|
|
commands/msfilter-add-fmtp.h
|
|
commands/netsim.cc
|
|
commands/netsim.h
|
|
commands/play-wav.cc
|
|
commands/play-wav.h
|
|
commands/pop-event.cc
|
|
commands/pop-event.h
|
|
commands/port.cc
|
|
commands/port.h
|
|
commands/ptime.cc
|
|
commands/ptime.h
|
|
commands/quit.cc
|
|
commands/quit.h
|
|
commands/register.cc
|
|
commands/register.h
|
|
commands/register-info.cc
|
|
commands/register-status.cc
|
|
commands/register-status.h
|
|
commands/terminate.cc
|
|
commands/terminate.h
|
|
commands/unregister.cc
|
|
commands/unregister.h
|
|
commands/version.cc
|
|
commands/version.h
|
|
commands/video.cc
|
|
commands/video.h
|
|
daemon.cc
|
|
daemon.h
|
|
)
|
|
|
|
set(DAEMON_PIPETEST_SOURCE_FILES
|
|
daemon-pipetest.c
|
|
)
|
|
|
|
bc_apply_compile_flags(DAEMON_SOURCE_FILES STRICT_OPTIONS_CPP STRICT_OPTIONS_CXX)
|
|
bc_apply_compile_flags(DAEMON_PIPETEST_SOURCE_FILES STRICT_OPTIONS_CPP STRICT_OPTIONS_C)
|
|
|
|
add_executable(linphone-daemon ${DAEMON_SOURCE_FILES})
|
|
target_include_directories(linphone-daemon PRIVATE ${CMAKE_CURRENT_LIST_DIR})
|
|
target_link_libraries(linphone-daemon ${LINPHONE_LIBS_FOR_TOOLS} ${MEDIASTREAMER2_LIBRARIES} ${ORTP_LIBRARIES} ${BCTOOLBOX_CORE_LIBRARIES})
|
|
set_target_properties(linphone-daemon PROPERTIES LINK_FLAGS "${LINPHONE_LDFLAGS}")
|
|
|
|
add_executable(linphone-daemon-pipetest ${DAEMON_PIPETEST_SOURCE_FILES})
|
|
target_link_libraries(linphone-daemon-pipetest ${LINPHONE_LIBS_FOR_TOOLS} ${ORTP_LIBRARIES})
|
|
set_target_properties(linphone-daemon-pipetest PROPERTIES LINK_FLAGS "${LINPHONE_LDFLAGS}")
|
|
|
|
set(INSTALL_TARGETS linphone-daemon linphone-daemon-pipetest)
|
|
|
|
install(TARGETS ${INSTALL_TARGETS}
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
|
|
)
|