apply to make build system

This commit is contained in:
Fu Hanxi
2020-06-19 18:58:03 +08:00
parent d7639d5cf8
commit 010d7e9023
6 changed files with 62 additions and 47 deletions

View File

@@ -1,8 +1,8 @@
import logging
import os
import shlex
import subprocess
import sys
import shlex
from .common import BuildSystem, BuildError
@@ -58,3 +58,7 @@ class MakeBuildSystem(BuildSystem):
if MAKE_PROJECT_LINE not in makefile_content:
return False
return True
@staticmethod
def supported_targets(app_path):
return ['esp32']