1
1
Этот коммит содержится в:
Andreas Schneider 2010-02-13 12:47:28 +01:00
родитель 60e5a32d27
Коммит 492d1f24c8

Просмотреть файл

@ -3,27 +3,27 @@
include(CheckCCompilerFlag) include(CheckCCompilerFlag)
if (UNIX AND NOT WIN32) if (UNIX AND NOT WIN32)
if (CMAKE_COMPILER_IS_GNUCC) if (${CMAKE_C_COMPILER_ID} MATCHES GNU)
# add -Wconversion ? # add -Wconversion ?
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99 -pedantic -Wall -Wextra -Wshadow -Wmissing-prototypes -Wdeclaration-after-statement -Wunused -Wfloat-equal -Wpointer-arith -Wwrite-strings -Wformat-security -Wmissing-format-attribute") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99 -pedantic -Wall -Wextra -Wshadow -Wmissing-prototypes -Wdeclaration-after-statement -Wunused -Wfloat-equal -Wpointer-arith -Wwrite-strings -Wformat-security -Wmissing-format-attribute")
# with -fPIC # with -fPIC
check_c_compiler_flag("-fPIC" WITH_FPIC) check_c_compiler_flag("-fPIC" WITH_FPIC)
if (WITH_FPIC) if (WITH_FPIC)
add_definitions(-fPIC) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC")
endif (WITH_FPIC) endif (WITH_FPIC)
check_c_compiler_flag("-fstack-protector" WITH_STACK_PROTECTOR) check_c_compiler_flag("-fstack-protector" WITH_STACK_PROTECTOR)
if (WITH_STACK_PROTECTOR) if (WITH_STACK_PROTECTOR)
add_definitions(-fstack-protector) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fstack-protector")
endif (WITH_STACK_PROTECTOR) endif (WITH_STACK_PROTECTOR)
check_c_compiler_flag("-D_FORTIFY_SOURCE=2" WITH_FORTIFY_SOURCE) check_c_compiler_flag("-D_FORTIFY_SOURCE=2" WITH_FORTIFY_SOURCE)
if (WITH_FORTIFY_SOURCE) if (WITH_FORTIFY_SOURCE)
add_definitions(-D_FORTIFY_SOURCE=2) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_FORTIFY_SOURCE=2")
endif (WITH_FORTIFY_SOURCE) endif (WITH_FORTIFY_SOURCE)
endif (CMAKE_COMPILER_IS_GNUCC) endif (${CMAKE_C_COMPILER_ID} MATCHES GNU)
if (CMAKE_SIZEOF_VOID_P MATCHES "8") if (CMAKE_SIZEOF_VOID_P MATCHES "8")
# with large file support # with large file support
@ -48,12 +48,12 @@ if (UNIX AND NOT WIN32)
endif (CMAKE_SIZEOF_VOID_P MATCHES "8") endif (CMAKE_SIZEOF_VOID_P MATCHES "8")
if (_lfs_CFLAGS) if (_lfs_CFLAGS)
string(REGEX REPLACE "[\r\n]" " " "${_lfs_CFLAGS}" "${${_lfs_CFLAGS}}") string(REGEX REPLACE "[\r\n]" " " "${_lfs_CFLAGS}" "${${_lfs_CFLAGS}}")
add_definitions(${_lfs_CFLAGS}) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${_lfs_CFLAGS}")
endif (_lfs_CFLAGS) endif (_lfs_CFLAGS)
endif (UNIX AND NOT WIN32) endif (UNIX AND NOT WIN32)
# suppress warning about "deprecated" functions # suppress warning about "deprecated" functions
if (MSVC) if (MSVC)
add_definitions(-D_CRT_SECURE_NO_WARNINGS) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_CRT_SECURE_NO_WARNINGS")
endif (MSVC) endif (MSVC)