mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
9c1d4f5b54
The "make" build system was deprecated in v4.0 in favor of idf.py (cmake). The remaining support is removed in v5.0.
21 lines
493 B
Python
21 lines
493 B
Python
from .cmake import BUILD_SYSTEM_CMAKE, CMakeBuildSystem
|
|
from .common import (DEFAULT_TARGET, BuildError, BuildItem, BuildSystem, ConfigRule, config_rules_from_str,
|
|
setup_logging)
|
|
|
|
BUILD_SYSTEMS = {
|
|
BUILD_SYSTEM_CMAKE: CMakeBuildSystem,
|
|
}
|
|
|
|
__all__ = [
|
|
'BuildItem',
|
|
'BuildSystem',
|
|
'BuildError',
|
|
'ConfigRule',
|
|
'config_rules_from_str',
|
|
'setup_logging',
|
|
'DEFAULT_TARGET',
|
|
'CMakeBuildSystem',
|
|
'BUILD_SYSTEM_CMAKE',
|
|
'BUILD_SYSTEMS',
|
|
]
|