Skip to content

Commit

Permalink
Fix issue in CMakeLists.txt.
Browse files Browse the repository at this point in the history
CMAKE_COMPILER_IS_GNUC should be CMAKE_COMPILER_IS_GNUCC.
  • Loading branch information
Sean Li authored and seanlis committed Jun 12, 2017
1 parent e56b058 commit 1988b54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miniupnpc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 1988b54

Please sign in to comment.