mirror of
https://github.com/kiwix/kiwix-build.git
synced 2025-06-26 10:11:27 +00:00
Toolchain now became "simple" dependencies. They are referenced by Platform. Platform are now created at demande and a neutralPlatform now exists.
10 lines
213 B
Python
10 lines
213 B
Python
from .base import PlatformInfo
|
|
|
|
class NeutralPlatformInfo(PlatformInfo):
|
|
name = 'neutral'
|
|
static = ''
|
|
compatible_hosts = ['fedora', 'debian', 'Darwin']
|
|
|
|
def __str__(self):
|
|
return "neutral"
|