X-Git-Url: https://git.ao2.it/libam7xxx.git/blobdiff_plain/8a7e5a15fdda84005809f06ee4dc275962ea096d..024af793fa6d6af644c225804d140cc13aa56307:/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 9950111..d99e401 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,17 +5,19 @@ set(PROJECT_DESCRIPTION "Communication library for Actions Micro AM7XXX based USB projectors and DPFs") set(PROJECT_VER_MAJOR 0) -set(PROJECT_VER_MINOR 0) -set(PROJECT_VER_PATCH 1) +set(PROJECT_VER_MINOR 1) +set(PROJECT_VER_PATCH 2) set(PROJECT_VER_EXTRA "") set(PROJECT_VER "${PROJECT_VER_MAJOR}.${PROJECT_VER_MINOR}.${PROJECT_VER_PATCH}${PROJECT_VER_EXTRA}") set(PROJECT_APIVER "${PROJECT_VER_MAJOR}.${PROJECT_VER_MINOR}") -set(CMAKE_MODULE_PATH +set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/cmake_modules/") +OPTION(STRICT_COMPILATION_CHECKS "Enable stricter compilation checks" OFF) + include (MaintenanceTools) set(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin) @@ -37,14 +39,8 @@ if (CMAKE_COMPILER_IS_GNUCC) set(CMAKE_C_FLAGS "-std=c99 -pedantic -Wall -Wextra") endif() - # Don't make pedantic checks errors, - # as vanilla libusb-1.0.8 can't live with that - #add_flags(CMAKE_C_FLAGS -pedantic-errors) - - # GCC >= 4.6 - #add_flags(CMAKE_C_FLAGS -Wunused-but-set-variable) - add_flags(CMAKE_C_FLAGS + -fvisibility=hidden -fno-common -Wall -Wextra @@ -52,7 +48,6 @@ if (CMAKE_COMPILER_IS_GNUCC) -Winit-self -Winline -Wpacked - -Wp,-D_FORTIFY_SOURCE=2 -Wpointer-arith -Wlarger-than-65500 -Wmissing-declarations @@ -72,11 +67,27 @@ if (CMAKE_COMPILER_IS_GNUCC) -Wwrite-strings -fstack-protector --param=ssp-buffer-size=4) + + add_flags(DEBUG_FLAGS + -ggdb) + + add_flags(RELEASE_FLAGS + -Wp,-D_FORTIFY_SOURCE=2) + + if (STRICT_COMPILATION_CHECKS) + add_flags(STRICT_FLAGS + -Werror + # NOTE: Vanilla libusb-1.0.8 can't live with -pedantic-errors + -pedantic-errors + # NOTE: GCC >= 4.6 is needed for -Wunused-but-set-variable + -Wunused-but-set-variable) + + endif() endif() -set(CMAKE_C_FLAGS_DEBUG "-O0 -ggdb -DDEBUG=1 -Werror") -set(CMAKE_C_FLAGS_RELEASE "-O2") -set(CMAKE_C_FLAGS_RELWITHDEBINFO "-O2 -g") +set(CMAKE_C_FLAGS_DEBUG "-O0 ${DEBUG_FLAGS} ${STRICT_FLAGS}") +set(CMAKE_C_FLAGS_RELEASE "-O2 ${RELEASE_FLAGS} ${STRICT_FLAGS}") +set(CMAKE_C_FLAGS_RELWITHDEBINFO "-O2 ${RELEASE_FLAGS} ${DEBUG_FLAGS} ${STRICT_FLAGS}") # Add library project add_subdirectory(src)