From 1988b54fec4e1d8453832c0903bf87ac3c6216af Mon Sep 17 00:00:00 2001 From: Sean Li Date: Fri, 9 Jun 2017 11:31:37 +0800 Subject: [PATCH] Fix issue in CMakeLists.txt. CMAKE_COMPILER_IS_GNUC should be CMAKE_COMPILER_IS_GNUCC. --- miniupnpc/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miniupnpc/CMakeLists.txt b/miniupnpc/CMakeLists.txt index f0c9305..adb30ef 100644 --- a/miniupnpc/CMakeLists.txt +++ b/miniupnpc/CMakeLists.txt @@ -44,7 +44,7 @@ if (CMAKE_SYSTEM_NAME STREQUAL "Darwin") endif () # Set compiler specific build flags -if (CMAKE_COMPILER_IS_GNUC) +if (CMAKE_COMPILER_IS_GNUCC) # Set our own default flags at first run. if (NOT CONFIGURED)