diff --git a/coreapi/CMakeLists.txt b/coreapi/CMakeLists.txt index f2cf17e0a..79cb1dcb5 100644 --- a/coreapi/CMakeLists.txt +++ b/coreapi/CMakeLists.txt @@ -20,7 +20,7 @@ # ############################################################################ -if(MSVC AND NOT "${CMAKE_SYSTEM_NAME}" STREQUAL "WindowsPhone") +if(MSVC AND NOT CMAKE_SYSTEM_NAME STREQUAL "WindowsPhone") find_library(LIBGCC NAMES gcc) find_library(LIBMINGWEX NAMES mingwex) endif() @@ -150,10 +150,10 @@ endif() if(ENABLE_TUNNEL) list(APPEND LIBS ${TUNNEL_LIBRARIES}) endif() -if(MSVC AND NOT "${CMAKE_SYSTEM_NAME}" STREQUAL "WindowsPhone") +if(MSVC AND NOT CMAKE_SYSTEM_NAME STREQUAL "WindowsPhone") list(APPEND LIBS ${LIBGCC} ${LIBMINGWEX}) endif() -if(WIN32 AND NOT "${CMAKE_SYSTEM_NAME}" STREQUAL "WindowsPhone") +if(WIN32 AND NOT CMAKE_SYSTEM_NAME STREQUAL "WindowsPhone") list(APPEND LIBS shlwapi) endif() if(INTL_FOUND) @@ -176,7 +176,7 @@ else() endif() endif() endif() -if(WIN32 AND "${CMAKE_SYSTEM_NAME}" STREQUAL "WindowsPhone") +if(WIN32 AND CMAKE_SYSTEM_NAME STREQUAL "WindowsPhone") set_target_properties(linphone PROPERTIES PREFIX "lib") endif() if(ICONV_FOUND) diff --git a/mediastreamer2 b/mediastreamer2 index 1be89b118..aa4a25859 160000 --- a/mediastreamer2 +++ b/mediastreamer2 @@ -1 +1 @@ -Subproject commit 1be89b1183a9085b63a0ca50e153766ab0b4e891 +Subproject commit aa4a25859c3b33c0aa2cecca5f76919d8d5911a1