Source code for skbuild.platform_specifics.bsd

"""This module defines object specific to BSD platform."""

from __future__ import annotations

from . import unix


# pylint:disable=abstract-method
[docs] class BSDPlatform(unix.UnixPlatform): """BSD implementation of :class:`.abstract.CMakePlatform`."""