From a76933990c3863a0d8bc79a5d896b74f7b8e64de Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 23 Jun 2022 14:20:27 +0300 Subject: [PATCH] Remove generic targets --- platformio/builder/tools/piotarget.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/platformio/builder/tools/piotarget.py b/platformio/builder/tools/piotarget.py index 6ebe1f99..7436acaf 100644 --- a/platformio/builder/tools/piotarget.py +++ b/platformio/builder/tools/piotarget.py @@ -104,19 +104,6 @@ def DumpTargets(env): t["group"] == "Platform" for t in targets.values() ): targets["upload"] = dict(name="upload", group="Platform", title="Upload") - targets["compiledb"] = dict( - name="compiledb", - title="Compilation Database", - description="Generate compilation database `compile_commands.json`", - group="Advanced", - ) - targets["clean"] = dict(name="clean", title="Clean", group="General") - targets["cleanall"] = dict( - name="cleanall", - title="Clean All", - group="General", - description="Clean a build environment and installed library dependencies", - ) return list(targets.values())