diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-08-15 19:03:55 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-15 18:22:47 +0200 |
commit | 3fe1073c8a0793ae712c3cfd902df0a008ebaa44 (patch) | |
tree | 9d76040f46827eb1a9cca8e554ef4f69373f4ad5 /samples.d/config.cmake.sample | |
parent | 3262bd7940fcf09305ebf7952b12c63f85c7682c (diff) |
Ease standard target DATA and HTDOCS creation
This will create a custom target which make sure input
files are correct (linting or compiling them) then copying
them into the target build dir
Change-Id: I1d346d4611a6d97682a00d2038de41a643b28928
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'samples.d/config.cmake.sample')
-rw-r--r-- | samples.d/config.cmake.sample | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/samples.d/config.cmake.sample b/samples.d/config.cmake.sample index f5ac42a..8ca0349 100644 --- a/samples.d/config.cmake.sample +++ b/samples.d/config.cmake.sample @@ -161,6 +161,13 @@ set(WIDGET_ENTRY_POINT EntryPoint_Path_Not_Set) #set(AFB_TOKEN "" CACHE PATH "Default AFB_TOKEN") #set(AFB_REMPORT "1234" CACHE PATH "Default AFB_TOKEN") +# Optional schema validator about now only XML, LUA and JSON +# are supported +#------------------------------------------------------------ +#set(LUA_CHECKER "luac" CACHE STRING "LUA compiler") +#set(XML_CHECKER "xmllint" CACHE STRING "XML linter") +#set(JSON_CHECKER "json_verify" CACHE STRING "JSON linter") + # This include is mandatory and MUST happens at the end # of this file, else you expose you to unexpected behavior # ----------------------------------------------------------- |