diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2018-10-11 12:36:36 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@automotivelinux.org> | 2018-10-11 12:36:36 +0000 |
commit | fc55736e7c8c0a48e5842f05bfb3d10dc81d9275 (patch) | |
tree | 5f90cf37fd81fb3525a59c924dd6d9f23d698fab | |
parent | 9b4d200e551594cb05ae747ecd8f075a545766bc (diff) | |
parent | 5c3b42c759cfaf684909324e19a5d8304b85da31 (diff) |
Merge "Fix config.cmake" into flounderflounder_6.0.5flounder_6.0.4flounder_6.0.3flounder_6.0.2flounder_6.0.1flounder/6.0.5flounder/6.0.4flounder/6.0.3flounder/6.0.2flounder/6.0.16.0.56.0.46.0.36.0.26.0.1flounder
-rw-r--r-- | conf.d/cmake/config.cmake | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/conf.d/cmake/config.cmake b/conf.d/cmake/config.cmake index 5f59f66..9556a87 100644 --- a/conf.d/cmake/config.cmake +++ b/conf.d/cmake/config.cmake @@ -28,6 +28,7 @@ set(PROJECT_AUTHOR "Collignon, Loïc") set(PROJECT_AUTHOR_MAIL "loic.collignon@iot.bzh") set(PROJECT_LICENSE "MIT") set(PROJECT_LANGUAGES,"C") +set(API_NAME "persistence") # Where are stored default templates files from submodule or subtree app-templates in your project tree # relative to the root project directory @@ -43,6 +44,10 @@ set(PROJECT_APP_TEMPLATES_DIR "conf.d/app-templates") # Which directories inspect to find CMakeLists.txt target files # set(PROJECT_SRC_DIR_PATTERN "*") +# Compilation Mode (DEBUG, RELEASE) +# ---------------------------------- +#set(BUILD_TYPE "RELEASE") + # Kernel selection if needed. You can choose between a # mandatory version to impose a minimal version. # Or check Kernel minimal version and just print a Warning @@ -71,7 +76,7 @@ set (PKG_REQUIRED_LIST # Prefix path where will be installed the files # Default: /usr/local (need root permission to write in) # ------------------------------------------------------ -#set(CMAKE_INSTALL_PREFIX $ENV{HOME}/opt) +#set(INSTALL_PREFIX $ENV{HOME}/opt) # Customize link option # ----------------------------- @@ -107,16 +112,15 @@ set (PKG_REQUIRED_LIST #set(DEBUG_COMPILE_OPTIONS # -g # -ggdb -# -Wp,-U_FORTIFY_SOURCE # CACHE STRING "Compilation flags for DEBUG build type.") -#set(CCOV_COMPILE_OPTIONS +#set(COVERAGE_COMPILE_OPTIONS # -g -# -O2 # --coverage -# CACHE STRING "Compilation flags for CCOV build type.") +# CACHE STRING "Compilation flags for COVERAGE build type.") #set(RELEASE_COMPILE_OPTIONS # -g # -O2 +# -D_FORTIFY_SOURCE=2 # CACHE STRING "Compilation flags for RELEASE build type.") # (BUG!!!) as PKG_CONFIG_PATH does not work [should be an env variable] |