Fix issue in CMakeLists.txt.

CMAKE_COMPILER_IS_GNUC should be CMAKE_COMPILER_IS_GNUCC.
This commit is contained in:
Sean Li 2017-06-09 11:31:37 +08:00 committed by Sean Li
parent e56b0587a7
commit 1988b54fec
1 changed files with 1 additions and 1 deletions

View File

@ -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)