nextcloud-desktop/cmake/Modules/DefineCompilerFlags.cmake

50 lines
1.3 KiB
CMake
Raw Normal View History

2008-02-27 20:56:47 +03:00
# define system dependent compiler flags
2008-06-03 13:00:50 +04:00
include(CheckCCompilerFlag)
2008-02-27 20:56:47 +03:00
if (UNIX AND NOT WIN32)
# with -fPIC
check_c_compiler_flag("-fPIC" WITH_FPIC)
if (WITH_FPIC)
add_definitions(-fPIC)
endif (WITH_FPIC)
2008-02-27 20:56:47 +03:00
if (CMAKE_SIZEOF_VOID_P MATCHES "8")
2008-02-27 20:56:47 +03:00
# with large file support
execute_process(
COMMAND
getconf LFS64_CFLAGS
OUTPUT_VARIABLE
_lfs_CFLAGS
ERROR_QUIET
OUTPUT_STRIP_TRAILING_WHITESPACE
)
else (CMAKE_SIZEOF_VOID_P MATCHES "8")
# with large file support
execute_process(
COMMAND
getconf LFS_CFLAGS
OUTPUT_VARIABLE
_lfs_CFLAGS
ERROR_QUIET
OUTPUT_STRIP_TRAILING_WHITESPACE
)
endif (CMAKE_SIZEOF_VOID_P MATCHES "8")
string(REGEX REPLACE "[\r\n]" " " ${_lfs_CFLAGS} "${${_lfs_CFLAGS}}")
add_definitions(${_lfs_CFLAGS})
2008-07-09 11:47:24 +04:00
add_definitions(-Wall -Wextra -Wmissing-prototypes -Wdeclaration-after-statement -Wunused)
2008-06-03 13:00:50 +04:00
check_c_compiler_flag("-fstack-protector" WITH_STACK_PROTECTOR)
if (WITH_STACK_PROTECTOR)
add_definitions(-fstack-protector)
endif (WITH_STACK_PROTECTOR)
2008-06-03 13:00:50 +04:00
check_c_compiler_flag("-D_FORTIFY_SOURCE=2" WITH_FORTIFY_SOURCE)
if (WITH_FORTIFY_SOURCE)
add_definitions(-D_FORTIFY_SOURCE=2)
endif (WITH_FORTIFY_SOURCE)
2008-02-27 20:56:47 +03:00
endif (UNIX AND NOT WIN32)