~ubuntu-branches/ubuntu/trusty/kopete/trusty

« back to all changes in this revision

Viewing changes to protocols/jabber/googletalk/libjingle/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Rohan Garg
  • Date: 2013-11-23 17:46:40 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20131123174640-gz1zjv1xqh81bi2h
Tags: 4:4.11.80-0ubuntu1
* New upstream beta release
* Bump build dependency to libotr5-dev
* Update symbols
* Update install files
* Drop new_linphone.diff, not required anymore

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
        endif ( NOT APPLE )
29
29
endif ( NOT WIN32 )
30
30
 
 
31
if ( MEDIASTREAMER_OLD )
 
32
        add_definitions ( -DMEDIASTREAMER_OLD )
 
33
endif ( MEDIASTREAMER_OLD )
 
34
 
31
35
set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-undef -Wno-unused-parameter" )
32
36
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-undef -Wno-unused-parameter -Wno-non-virtual-dtor -Wno-delete-non-virtual-dtor" )
33
37
 
41
45
        ${LIBORTP_INCLUDE_DIR}
42
46
        ${SRTP_INCLUDE_DIR}
43
47
        ${JSONCPP_INCLUDE_DIR}
 
48
        ${ALSA_INCLUDES}
44
49
)
45
50
 
 
51
if ( NOT WIN32 )
 
52
        include_directories (
 
53
                ${OPENSSL_INCLUDE_DIR}
 
54
        )
 
55
endif ( NOT WIN32 )
 
56
 
46
57
########### next target ###############
47
58
 
48
59
set ( call_SRCS
261
272
        #timeutils calls CLOCK_MONOLITHIC stuff, so we need the rt library
262
273
        FIND_LIBRARY(RT_LIBRARY NAMES rt)
263
274
        set ( call_LIBS ${call_LIBS}
264
 
                ${SSL_LIBRARY}
265
 
                ${CRYPTO_LIBRARY}
 
275
                ${OPENSSL_LIBRARIES}
266
276
                ${RT_LIBRARY}
267
277
        )
268
278
endif ( NOT WIN32 )