diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-08-18 10:31:05 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-15 18:22:47 +0200 |
commit | 9755f3a09fb4a69502b5d3126ff6ea255004c7a2 (patch) | |
tree | 6f5cb1d4c80a19df443f6f3c884544d97a4d0703 /cmake | |
parent | c497905b167e33a542d842c8bbb53237a8f22861 (diff) |
Remove JSON checker not suitable for schema check
Change-Id: Iba8dcd35290ab43ffc3aeaeb91cf40b6af1268b8
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/cmake.d/02-variables.cmake | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cmake/cmake.d/02-variables.cmake b/cmake/cmake.d/02-variables.cmake index 6efe624..6d20b2f 100644 --- a/cmake/cmake.d/02-variables.cmake +++ b/cmake/cmake.d/02-variables.cmake @@ -170,7 +170,8 @@ endif() set(GDB_INITIAL_BREAK "personality" CACHE STRING "Initial Break Point for GDB remote") # Define some checker binaries to verify input DATA files -# to be included in package. +# to be included in package. Schema aren't checked for now. +# Dummy checker about JSON. 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") +set(JSON_CHECKER "echo" CACHE STRING "JSON linter") |