mirror of
https://forge.fsky.io/oneflux/omegafox.git
synced 2026-02-10 18:22:03 -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:
|
||||
-h, --help show this help message and exit
|
||||
--target {linux,windows,macos} [{linux,windows,macos} ...]
|
||||
Target platforms to build
|
||||
--target linux Target platform to build (Linux only)
|
||||
--arch {x86_64,arm64,i686} [{x86_64,arm64,i686} ...]
|
||||
Target architectures to build for each platform
|
||||
--bootstrap Bootstrap the build system
|
||||
--clean Clean the build directory before starting
|
||||
|
||||
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
|
||||
|
|
@ -25,7 +23,7 @@ from typing import List
|
|||
import shutil
|
||||
|
||||
# Constants
|
||||
AVAILABLE_TARGETS = ["linux", "windows", "macos"]
|
||||
AVAILABLE_TARGETS = ["linux"]
|
||||
AVAILABLE_ARCHS = ["x86_64", "arm64", "i686"]
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue