From 4fca5fe1b7be51c59bc4684d45aaec14136ea172 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torbj=C3=B6rn=20Rathsman?= Date: Sat, 5 Mar 2022 16:56:01 +0100 Subject: [PATCH] Add missing value to config file --- maikeconfig.json | 136 ---------------------------------------------- maikeconfig2.json | 4 ++ 2 files changed, 4 insertions(+), 136 deletions(-) delete mode 100644 maikeconfig.json diff --git a/maikeconfig.json b/maikeconfig.json deleted file mode 100644 index d6f8802..0000000 --- a/maikeconfig.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "directoryoptions": { - "paths_full_reject": [], - "paths_reject": [ - "..", - ".", - ".git", - "__targets_gcov", - "__targets_dbg", - "__targets_rel" - ], - "recursive": 1 - }, - "source_files": [ - "." - ], - "target_hooks": [ - { - "config": { - "appcompile": { - "args": [ - "-std=c++20", - "{cxxversion}", - "{cflags_extra}", - "{iquote}", - "{includedir}", - "-DMAIKE_TARGET_DIRECTORY={target_directory}", - "-DMAIKE_CURRENT_DIRECTORY={current_directory}", - "{includes_extra}", - "-o", - "{target}", - "{source}", - "{libdir}", - "{dependencies}" - ], - "name": "g++-10" - }, - "cflags_extra": [ - "Wconversion", - "Wall", - "Werror", - "Wextra" - ], - "cflags_format": "-^", - "dllcompile": { - "args": [ - "-std=c++20", - "{cxxversion}", - "{cflags_extra}", - "{iquote}", - "{includedir}", - "-DMAIKE_TARGET_DIRECTORY={target_directory}", - "-DMAIKE_CURRENT_DIRECTORY={current_directory}", - "{includes_extra}", - "-shared", - "-o", - "{target}", - "{source}", - "{libdir}", - "{dependencies}" - ], - "name": "g++-10" - }, - "include_format": "-include^", - "includedir": [], - "includedir_format": "-I^", - "includedir_noscan": [], - "iquote": [ - "." - ], - "iquote_format": "-iquote^", - "libcompile": { - "args": [ - "rcs", - "{target}", - "{dependencies}" - ], - "name": "ar" - }, - "libdir": [], - "libdir_format": "-L^", - "libext_format": "-l^", - "libint_format": "-l:^", - "mode": "c++", - "objcompile": { - "args": [ - "-std=c++20", - "-c", - "{cxxversion}", - "{cflags_extra}", - "{iquote}", - "{includedir}", - "-DMAIKE_TARGET_DIRECTORY={target_directory}", - "-DMAIKE_CURRENT_DIRECTORY={current_directory}", - "{includes_extra}", - "-o", - "{target}", - "{source}" - ], - "name": "g++-10" - }, - "pkgconfig": { - "args": [ - "{action}", - "{libname}" - ], - "name": "pkg-config" - }, - "stdprefix": "-std=", - "versionquery": { - "args": [ - "-E", - "-dM", - "-x", - "c++", - "{nullfile}" - ], - "name": "g++-10" - } - }, - "filename_exts": [ - ".c++", - ".cc", - ".cpp", - ".cxx", - ".h", - ".h++", - ".hh", - ".hpp", - ".hxx" - ], - "name": "targetcxx_default", - "plugin": "targetcxx" - } - ] -} diff --git a/maikeconfig2.json b/maikeconfig2.json index 9387f58..24340a0 100644 --- a/maikeconfig2.json +++ b/maikeconfig2.json @@ -105,6 +105,10 @@ "^\\.", "^__" ], + "fullpath_input_filter": [ + "^\\.", + "^__" + ], "recursive": 1 } }