diff options
Diffstat (limited to 'conf.d')
-rw-r--r-- | conf.d/cmake/config.cmake | 41 |
1 files changed, 24 insertions, 17 deletions
diff --git a/conf.d/cmake/config.cmake b/conf.d/cmake/config.cmake index ad9206e..36050cd 100644 --- a/conf.d/cmake/config.cmake +++ b/conf.d/cmake/config.cmake @@ -91,24 +91,31 @@ list(APPEND link_libraries -lpthread -lm) # Either separate options with ";", or each options must be quoted separately # DO NOT PUT ALL OPTION QUOTED AT ONCE , COMPILATION COULD FAILED ! # ---------------------------------------------------------------------------- -set(COMPILE_OPTIONS --Wall --Wextra --Wconversion --Wno-unused-parameter --Wno-sign-compare --Wno-sign-conversion --Werror=maybe-uninitialized --Werror=implicit-function-declaration --ffunction-sections --fdata-sections --fPIC +#set(COMPILE_OPTIONS +#-Wall +#-Wextra +#-Wconversion +#-Wno-unused-parameter +#-Wno-sign-compare +#-Wno-sign-conversion +#-Werror=maybe-uninitialized +#-Werror=implicit-function-declaration +#-ffunction-sections +#-fdata-sections +#-fPIC # Personal compilation options --DMAX_SND_CARD=16 # should be more than enough even in luxury vehicule --DMAX_LINEAR_DB_SCALE=24 # until 24db volume normalisation use a simple linear scale --DTLV_BYTE_SIZE=256 # Alsa use 4096 as default but 256 should fit most sndcards --DCONTROL_MAXPATH_LEN=255 - CACHE STRING "Compilation flags") +#-DMAX_SND_CARD=16 # should be more than enough even in luxury vehicule +#-DMAX_LINEAR_DB_SCALE=24 # until 24db volume normalisation use a simple linear scale +#-DTLV_BYTE_SIZE=256 # Alsa use 4096 as default but 256 should fit most sndcards +#-DCONTROL_MAXPATH_LEN=255 +# CACHE STRING "Compilation flags") + +add_compile_options(-DAFB_BINDING_VERSION=2) +add_compile_options(-DMAX_SND_CARD=16) # should be more than enough even in luxury vehicule +add_compile_options(-DMAX_LINEAR_DB_SCALE=24) # until 24db volume normalisation use a simple linear scale +add_compile_options(-DTLV_BYTE_SIZE=256) # Alsa use 4096 as default but 256 should fit most sndcards +add_compile_options(-DCONTROL_MAXPATH_LEN=255) + #set(C_COMPILE_OPTIONS "" CACHE STRING "Compilation flags for C language.") #set(CXX_COMPILE_OPTIONS "" CACHE STRING "Compilation flags for C++ language.") #set(PROFILING_COMPILE_OPTIONS |