Fix build of linphone-daemon

This commit is contained in:
François Grisez 2017-02-22 12:06:28 +01:00
parent 264bd2b2dc
commit 57062706ec
3 changed files with 6 additions and 0 deletions

View file

@ -63,6 +63,9 @@ option(ENABLE_VCARD "Turn on compilation of vcard4 support." YES)
option(CXX_WRAPPER "Build the C++ wrapper for Liblinphone." OFF)
set(CMAKE_CXX_STANDARD 11)
macro(apply_compile_flags SOURCE_FILES)
if(${SOURCE_FILES})
set(options "")

View file

@ -17,6 +17,8 @@ along with this library; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdexcept>
#include <string>
#include "register-info.h"
class RegisterInfoResponse: public Response {

View file

@ -20,6 +20,7 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#ifndef LINPHONE_DAEMON_COMMAND_REGISTER_INFO_H_
#define LINPHONE_DAEMON_COMMAND_REGISTER_INFO_H_
#include <string>
#include "daemon.h"
class RegisterInfoCommand: public DaemonCommand {