mirror of
https://forge.fsky.io/oneflux/omegafox.git
synced 2026-02-10 13:02:04 -08:00
remove mac, windows builds
This commit is contained in:
parent
ae58f493f4
commit
e6bd4385ee
1 changed files with 3 additions and 5 deletions
|
|
@ -3,17 +3,15 @@ Easy build CLI for Omegafox
|
||||||
|
|
||||||
options:
|
options:
|
||||||
-h, --help show this help message and exit
|
-h, --help show this help message and exit
|
||||||
--target {linux,windows,macos} [{linux,windows,macos} ...]
|
--target linux Target platform to build (Linux only)
|
||||||
Target platforms to build
|
|
||||||
--arch {x86_64,arm64,i686} [{x86_64,arm64,i686} ...]
|
--arch {x86_64,arm64,i686} [{x86_64,arm64,i686} ...]
|
||||||
Target architectures to build for each platform
|
Target architectures to build for each platform
|
||||||
--bootstrap Bootstrap the build system
|
--bootstrap Bootstrap the build system
|
||||||
--clean Clean the build directory before starting
|
--clean Clean the build directory before starting
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
$ python3 multibuild.py --target linux windows macos --arch x86_64 arm64
|
$ python3 multibuild.py --target linux --arch x86_64 arm64
|
||||||
|
|
||||||
Since Omegafox is NOT meant to be used as a daily driver, no installers are provided.
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
|
|
@ -25,7 +23,7 @@ from typing import List
|
||||||
import shutil
|
import shutil
|
||||||
|
|
||||||
# Constants
|
# Constants
|
||||||
AVAILABLE_TARGETS = ["linux", "windows", "macos"]
|
AVAILABLE_TARGETS = ["linux"]
|
||||||
AVAILABLE_ARCHS = ["x86_64", "arm64", "i686"]
|
AVAILABLE_ARCHS = ["x86_64", "arm64", "i686"]
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue