diff --git a/Makefile b/Makefile index eeca6fd2f..7dfea320b 100644 --- a/Makefile +++ b/Makefile @@ -47314,6 +47314,7 @@ $(OutDir_ide_Designers)Json.o: $(UPPDIR1)ide/Designers/Json.cpp \ $(UPPDIR1)ide/Debuggers/Gdb.lay \ $(UPPDIR1)ide/Designers/Designers.h \ $(UPPDIR1)ide/Designers/Json.cpp \ + $(UPPDIR1)ide/Designers/JsonValidator.h \ $(UPPDIR1)ide/IconDes/IconDes.h \ $(UPPDIR1)ide/IconDes/IconDes.iml \ $(UPPDIR1)ide/IconDes/IconDes.lay \ @@ -47372,6 +47373,99 @@ $(OutDir_ide_Designers)Json.o: $(UPPDIR1)ide/Designers/Json.cpp \ $(UPPDIR1)uppconfig.h $(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Designers) $(UPPDIR1)ide/Designers/Json.cpp -o $(OutDir_ide_Designers)Json.o +$(OutDir_ide_Designers)JsonValidator.o: $(UPPDIR1)ide/Designers/JsonValidator.cpp \ + $(UPPDIR1)Core/Algo.h \ + $(UPPDIR1)Core/App.h \ + $(UPPDIR1)Core/AString.hpp \ + $(UPPDIR1)Core/Atomic.h \ + $(UPPDIR1)Core/BiCont.h \ + $(UPPDIR1)Core/BinUndoRedo.h \ + $(UPPDIR1)Core/Callback.h \ + $(UPPDIR1)Core/CallbackN.i \ + $(UPPDIR1)Core/CallbackNP.i \ + $(UPPDIR1)Core/CallbackR.i \ + $(UPPDIR1)Core/CharFilter.h \ + $(UPPDIR1)Core/CharSet.h \ + $(UPPDIR1)Core/CharSet.i \ + $(UPPDIR1)Core/CoAlgo.h \ + $(UPPDIR1)Core/Color.h \ + $(UPPDIR1)Core/Complex.h \ + $(UPPDIR1)Core/config.h \ + $(UPPDIR1)Core/Convert.h \ + $(UPPDIR1)Core/Convert.hpp \ + $(UPPDIR1)Core/Core.h \ + $(UPPDIR1)Core/CoSort.h \ + $(UPPDIR1)Core/CoWork.h \ + $(UPPDIR1)Core/Defs.h \ + $(UPPDIR1)Core/Diag.h \ + $(UPPDIR1)Core/FileMapping.h \ + $(UPPDIR1)Core/FilterStream.h \ + $(UPPDIR1)Core/FixedMap.h \ + $(UPPDIR1)Core/Fn.h \ + $(UPPDIR1)Core/Format.h \ + $(UPPDIR1)Core/Function.h \ + $(UPPDIR1)Core/Gtypes.h \ + $(UPPDIR1)Core/Hash.h \ + $(UPPDIR1)Core/Heap.h \ + $(UPPDIR1)Core/HttpStatusCode.i \ + $(UPPDIR1)Core/Huge.h \ + $(UPPDIR1)Core/i18n.h \ + $(UPPDIR1)Core/Index.h \ + $(UPPDIR1)Core/Index.hpp \ + $(UPPDIR1)Core/Inet.h \ + $(UPPDIR1)Core/InMap.hpp \ + $(UPPDIR1)Core/InVector.h \ + $(UPPDIR1)Core/InVector.hpp \ + $(UPPDIR1)Core/JSON.h \ + $(UPPDIR1)Core/Lang.h \ + $(UPPDIR1)Core/Lang_s.h \ + $(UPPDIR1)Core/LocalProcess.h \ + $(UPPDIR1)Core/Map.h \ + $(UPPDIR1)Core/Map.hpp \ + $(UPPDIR1)Core/Mem.h \ + $(UPPDIR1)Core/Mt.h \ + $(UPPDIR1)Core/Obsolete.h \ + $(UPPDIR1)Core/Ops.h \ + $(UPPDIR1)Core/Other.h \ + $(UPPDIR1)Core/Other.hpp \ + $(UPPDIR1)Core/Parser.h \ + $(UPPDIR1)Core/Path.h \ + $(UPPDIR1)Core/Profile.h \ + $(UPPDIR1)Core/Ptr.h \ + $(UPPDIR1)Core/Range.h \ + $(UPPDIR1)Core/Sort.h \ + $(UPPDIR1)Core/Sorted.h \ + $(UPPDIR1)Core/SplitMerge.h \ + $(UPPDIR1)Core/Stream.h \ + $(UPPDIR1)Core/String.h \ + $(UPPDIR1)Core/t_.h \ + $(UPPDIR1)Core/TimeDate.h \ + $(UPPDIR1)Core/Topic.h \ + $(UPPDIR1)Core/Topt.h \ + $(UPPDIR1)Core/Tuple.h \ + $(UPPDIR1)Core/Utf.hpp \ + $(UPPDIR1)Core/Util.h \ + $(UPPDIR1)Core/Uuid.h \ + $(UPPDIR1)Core/Value.h \ + $(UPPDIR1)Core/Value.hpp \ + $(UPPDIR1)Core/ValueCache.h \ + $(UPPDIR1)Core/ValueUtil.h \ + $(UPPDIR1)Core/ValueUtil.hpp \ + $(UPPDIR1)Core/Vcont.h \ + $(UPPDIR1)Core/Vcont.hpp \ + $(UPPDIR1)Core/Win32Util.h \ + $(UPPDIR1)Core/XML.h \ + $(UPPDIR1)Core/Xmlize.h \ + $(UPPDIR1)Core/Xmlize.hpp \ + $(UPPDIR1)Core/z.h \ + $(UPPDIR1)ide/Designers/JsonValidator.cpp \ + $(UPPDIR1)ide/Designers/JsonValidator.h \ + $(UPPDIR1)plugin/pcre/lib/pcre.h \ + $(UPPDIR1)plugin/pcre/Pcre.h \ + $(UPPDIR1)plugin/pcre/RegExp.h \ + $(UPPDIR1)uppconfig.h + $(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Designers) $(UPPDIR1)ide/Designers/JsonValidator.cpp -o $(OutDir_ide_Designers)JsonValidator.o + $(OutDir_ide_Designers)md.o: $(UPPDIR1)ide/Designers/md.cpp \ $(UPPDIR1)CodeEditor/CodeEditor.h \ $(UPPDIR1)CodeEditor/CodeEditor.iml \ @@ -47853,6 +47947,7 @@ $(OutDir_ide_Designers)Designers.a: \ $(OutDir_ide_Designers)TreeDes.o \ $(OutDir_ide_Designers)Xml.o \ $(OutDir_ide_Designers)Json.o \ + $(OutDir_ide_Designers)JsonValidator.o \ $(OutDir_ide_Designers)md.o \ $(OutDir_ide_Designers)export_md.o $(AR) $(OutDir_ide_Designers)Designers.a \ @@ -47863,6 +47958,7 @@ $(OutDir_ide_Designers)Designers.a: \ $(OutDir_ide_Designers)TreeDes.o \ $(OutDir_ide_Designers)Xml.o \ $(OutDir_ide_Designers)Json.o \ + $(OutDir_ide_Designers)JsonValidator.o \ $(OutDir_ide_Designers)md.o \ $(OutDir_ide_Designers)export_md.o diff --git a/Makefile.in b/Makefile.in index eeca6fd2f..7dfea320b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -47314,6 +47314,7 @@ $(OutDir_ide_Designers)Json.o: $(UPPDIR1)ide/Designers/Json.cpp \ $(UPPDIR1)ide/Debuggers/Gdb.lay \ $(UPPDIR1)ide/Designers/Designers.h \ $(UPPDIR1)ide/Designers/Json.cpp \ + $(UPPDIR1)ide/Designers/JsonValidator.h \ $(UPPDIR1)ide/IconDes/IconDes.h \ $(UPPDIR1)ide/IconDes/IconDes.iml \ $(UPPDIR1)ide/IconDes/IconDes.lay \ @@ -47372,6 +47373,99 @@ $(OutDir_ide_Designers)Json.o: $(UPPDIR1)ide/Designers/Json.cpp \ $(UPPDIR1)uppconfig.h $(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Designers) $(UPPDIR1)ide/Designers/Json.cpp -o $(OutDir_ide_Designers)Json.o +$(OutDir_ide_Designers)JsonValidator.o: $(UPPDIR1)ide/Designers/JsonValidator.cpp \ + $(UPPDIR1)Core/Algo.h \ + $(UPPDIR1)Core/App.h \ + $(UPPDIR1)Core/AString.hpp \ + $(UPPDIR1)Core/Atomic.h \ + $(UPPDIR1)Core/BiCont.h \ + $(UPPDIR1)Core/BinUndoRedo.h \ + $(UPPDIR1)Core/Callback.h \ + $(UPPDIR1)Core/CallbackN.i \ + $(UPPDIR1)Core/CallbackNP.i \ + $(UPPDIR1)Core/CallbackR.i \ + $(UPPDIR1)Core/CharFilter.h \ + $(UPPDIR1)Core/CharSet.h \ + $(UPPDIR1)Core/CharSet.i \ + $(UPPDIR1)Core/CoAlgo.h \ + $(UPPDIR1)Core/Color.h \ + $(UPPDIR1)Core/Complex.h \ + $(UPPDIR1)Core/config.h \ + $(UPPDIR1)Core/Convert.h \ + $(UPPDIR1)Core/Convert.hpp \ + $(UPPDIR1)Core/Core.h \ + $(UPPDIR1)Core/CoSort.h \ + $(UPPDIR1)Core/CoWork.h \ + $(UPPDIR1)Core/Defs.h \ + $(UPPDIR1)Core/Diag.h \ + $(UPPDIR1)Core/FileMapping.h \ + $(UPPDIR1)Core/FilterStream.h \ + $(UPPDIR1)Core/FixedMap.h \ + $(UPPDIR1)Core/Fn.h \ + $(UPPDIR1)Core/Format.h \ + $(UPPDIR1)Core/Function.h \ + $(UPPDIR1)Core/Gtypes.h \ + $(UPPDIR1)Core/Hash.h \ + $(UPPDIR1)Core/Heap.h \ + $(UPPDIR1)Core/HttpStatusCode.i \ + $(UPPDIR1)Core/Huge.h \ + $(UPPDIR1)Core/i18n.h \ + $(UPPDIR1)Core/Index.h \ + $(UPPDIR1)Core/Index.hpp \ + $(UPPDIR1)Core/Inet.h \ + $(UPPDIR1)Core/InMap.hpp \ + $(UPPDIR1)Core/InVector.h \ + $(UPPDIR1)Core/InVector.hpp \ + $(UPPDIR1)Core/JSON.h \ + $(UPPDIR1)Core/Lang.h \ + $(UPPDIR1)Core/Lang_s.h \ + $(UPPDIR1)Core/LocalProcess.h \ + $(UPPDIR1)Core/Map.h \ + $(UPPDIR1)Core/Map.hpp \ + $(UPPDIR1)Core/Mem.h \ + $(UPPDIR1)Core/Mt.h \ + $(UPPDIR1)Core/Obsolete.h \ + $(UPPDIR1)Core/Ops.h \ + $(UPPDIR1)Core/Other.h \ + $(UPPDIR1)Core/Other.hpp \ + $(UPPDIR1)Core/Parser.h \ + $(UPPDIR1)Core/Path.h \ + $(UPPDIR1)Core/Profile.h \ + $(UPPDIR1)Core/Ptr.h \ + $(UPPDIR1)Core/Range.h \ + $(UPPDIR1)Core/Sort.h \ + $(UPPDIR1)Core/Sorted.h \ + $(UPPDIR1)Core/SplitMerge.h \ + $(UPPDIR1)Core/Stream.h \ + $(UPPDIR1)Core/String.h \ + $(UPPDIR1)Core/t_.h \ + $(UPPDIR1)Core/TimeDate.h \ + $(UPPDIR1)Core/Topic.h \ + $(UPPDIR1)Core/Topt.h \ + $(UPPDIR1)Core/Tuple.h \ + $(UPPDIR1)Core/Utf.hpp \ + $(UPPDIR1)Core/Util.h \ + $(UPPDIR1)Core/Uuid.h \ + $(UPPDIR1)Core/Value.h \ + $(UPPDIR1)Core/Value.hpp \ + $(UPPDIR1)Core/ValueCache.h \ + $(UPPDIR1)Core/ValueUtil.h \ + $(UPPDIR1)Core/ValueUtil.hpp \ + $(UPPDIR1)Core/Vcont.h \ + $(UPPDIR1)Core/Vcont.hpp \ + $(UPPDIR1)Core/Win32Util.h \ + $(UPPDIR1)Core/XML.h \ + $(UPPDIR1)Core/Xmlize.h \ + $(UPPDIR1)Core/Xmlize.hpp \ + $(UPPDIR1)Core/z.h \ + $(UPPDIR1)ide/Designers/JsonValidator.cpp \ + $(UPPDIR1)ide/Designers/JsonValidator.h \ + $(UPPDIR1)plugin/pcre/lib/pcre.h \ + $(UPPDIR1)plugin/pcre/Pcre.h \ + $(UPPDIR1)plugin/pcre/RegExp.h \ + $(UPPDIR1)uppconfig.h + $(CXX) -c -x c++ $(CXXFLAGS) $(CINC) $(Macro_ide_Designers) $(UPPDIR1)ide/Designers/JsonValidator.cpp -o $(OutDir_ide_Designers)JsonValidator.o + $(OutDir_ide_Designers)md.o: $(UPPDIR1)ide/Designers/md.cpp \ $(UPPDIR1)CodeEditor/CodeEditor.h \ $(UPPDIR1)CodeEditor/CodeEditor.iml \ @@ -47853,6 +47947,7 @@ $(OutDir_ide_Designers)Designers.a: \ $(OutDir_ide_Designers)TreeDes.o \ $(OutDir_ide_Designers)Xml.o \ $(OutDir_ide_Designers)Json.o \ + $(OutDir_ide_Designers)JsonValidator.o \ $(OutDir_ide_Designers)md.o \ $(OutDir_ide_Designers)export_md.o $(AR) $(OutDir_ide_Designers)Designers.a \ @@ -47863,6 +47958,7 @@ $(OutDir_ide_Designers)Designers.a: \ $(OutDir_ide_Designers)TreeDes.o \ $(OutDir_ide_Designers)Xml.o \ $(OutDir_ide_Designers)Json.o \ + $(OutDir_ide_Designers)JsonValidator.o \ $(OutDir_ide_Designers)md.o \ $(OutDir_ide_Designers)export_md.o