From 421432ea53ba17c3eb79ff1d085319ca53bb582d Mon Sep 17 00:00:00 2001 From: Shauren Date: Sun, 12 Jul 2015 14:34:55 +0200 Subject: [PATCH] Buildsystem: Removed unneeded warning disabling from gsoap (handled on global /dep level) --- dep/gsoap/CMakeLists.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/dep/gsoap/CMakeLists.txt b/dep/gsoap/CMakeLists.txt index 2cf78e1058b..e339ccb00ea 100644 --- a/dep/gsoap/CMakeLists.txt +++ b/dep/gsoap/CMakeLists.txt @@ -21,11 +21,6 @@ include_directories( # Little fix for MSVC / Windows platforms add_definitions(-D_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=0) -# Turn off warnings for gsoap till the sources are updated -IF ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang" OR "${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU") - set_source_files_properties(stdsoap2.cpp PROPERTIES COMPILE_FLAGS -Wno-unused-parameter) -endif() - add_library(gsoap STATIC ${gsoap_STAT_SRCS}) set_target_properties(gsoap PROPERTIES LINKER_LANGUAGE CXX)