diff options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ad90fb0d6..e571e5561 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -769,13 +769,13 @@ if(CMAKE_COMPILER_IS_GNUCC AND APPLE) check_c_compiler_flag(-Wno-long-double HAVE_C_FLAG_Wno_long_double) if(HAVE_C_FLAG_Wno_long_double) # The Mac version of GCC warns about use of long double. Disable it. - get_source_file_property(MPRINTF_COMPILE_FLAGS curl_mprintf.c COMPILE_FLAGS) + get_source_file_property(MPRINTF_COMPILE_FLAGS mprintf.c COMPILE_FLAGS) if(MPRINTF_COMPILE_FLAGS) set(MPRINTF_COMPILE_FLAGS "${MPRINTF_COMPILE_FLAGS} -Wno-long-double") else(MPRINTF_COMPILE_FLAGS) set(MPRINTF_COMPILE_FLAGS "-Wno-long-double") endif(MPRINTF_COMPILE_FLAGS) - set_source_files_properties(curl_mprintf.c PROPERTIES + set_source_files_properties(mprintf.c PROPERTIES COMPILE_FLAGS ${MPRINTF_COMPILE_FLAGS}) endif(HAVE_C_FLAG_Wno_long_double) endif(CMAKE_COMPILER_IS_GNUCC AND APPLE) |