remove mac, windows builds

This commit is contained in:
oneflux 2025-04-21 21:02:13 -07:00
parent ae58f493f4
commit e6bd4385ee

View file

@ -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"]