X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=cmake%2Fconfig.cmake.sample;h=af5ad937536884fb8650d29c3accef454479a972;hb=c46c36a2d0e1b27159fdb98cba89f45e4f3dfaa9;hp=a7386c0e1f1617df68e994a91df7e07bdb6640df;hpb=2d21ecea6f2929cb07f62133c3812627d8408931;p=staging%2Fxdg-launcher.git diff --git a/cmake/config.cmake.sample b/cmake/config.cmake.sample index a7386c0..af5ad93 100644 --- a/cmake/config.cmake.sample +++ b/cmake/config.cmake.sample @@ -29,6 +29,10 @@ set(PROJECT_AUTHOR_MAIL "example.man@bigouden.bzh") set(PROJECT_LICENCE "APL2.0") set(PROJECT_LANGUAGES,"C") +# Where are stored default templates files from submodule or subtree app-templates in your project tree +# relative to the root project directory +set(PROJECT_APP_TEMPLATES_DIR "conf.d/default") + # Where are stored your external libraries for your project. This is 3rd party library that you don't maintain # but used and must be built and linked. # set(PROJECT_LIBDIR "libs") @@ -40,9 +44,13 @@ set(PROJECT_LANGUAGES,"C") # ---------------------------------- set(CMAKE_BUILD_TYPE "DEBUG") +# Kernel selection if needed. Impose a minimal version. +# ----------------------------------------------- +set (kernel_minimal_version 4.8) + # Compiler selection if needed. Impose a minimal version. # ----------------------------------------------- -set (gcc_minimal_version 4.9) +set (gcc_minimal_version 4.9) # PKG_CONFIG required packages # ----------------------------- @@ -116,3 +124,10 @@ set(LD_LIBRARY_PATH ${CMAKE_INSTALL_PREFIX}/lib64 ${CMAKE_INSTALL_PREFIX}/lib) # - application/vnd.agl.html.hybrid # # set(WIDGET_TYPE MimeType) + + +# Optional Application Framework security token +# and port use for remote debugging. +#------------------------------------------------------------ +#set(AFB_TOKEN "" CACHE PATH "Default AFB_TOKEN") +#set(AFB_REMPORT "1234" CACHE PATH "Default AFB_TOKEN") \ No newline at end of file