معرفی شرکت ها


bmgen-2023.5.0b0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Broken Mouse Studios' build solution
ویژگی مقدار
سیستم عامل -
نام فایل bmgen-2023.5.0b0
نام bmgen
نسخه کتابخانه 2023.5.0b0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده bms
ایمیل نویسنده bmgen@brokenmouse.studio
آدرس صفحه اصلی https://git.brokenmouse.studio/bms/bmgen
آدرس اینترنتی https://pypi.org/project/bmgen/
مجوز -
# bmgen - Broken Mouse Studios' build solution ## DISCLAIMER This project is currently in it's beta phase! It needs to be cleaned up and does not yet have it's full set of features. You may quickly hit it's limits. You should expect API changes and are welcome to give feedback via <https://git.brokenmouse.studio/bms/bmgen/issues> ## Features - build scripts written in Python - incremental builds - temporary build directories - colorful and easy to read output - simple build commands ## Installation - Install bmgen via `pip install bmgen` or `python3 -m pip install bmgen` ## Building a simple C project This example shows a script which builds two files named `main.c` and `game.c` into a binary named `mygame` with `SDL2`. The directory structure created by bmgen will look like this: ```plain - bin/ - dbg/ - obj/ - main.o - game.o - mygame ``` The following is a breakdown of the script. 1. First import the `clang` command: ```python from bmgen.commands.clang import clang ``` 2. Then set the base output directory and tell bmgen to create the base, variant and the `clang` command's object directory: ```python inst.base_output_dir = 'bin' inst.update_output_dir() clang.update_object_dir() ``` 3. Build the program via `clang`: ```python clang('mygame', ['main.c', 'game.c'], ['sdl2']) ``` The final `bmgen.py` looks like this: ```python from bmgen.commands.clang import clang inst.base_output_dir = 'bin' inst.update_output_dir() clang.update_object_dir() clang('mygame', ['main.c', 'game.c'], ['sdl2']) ``` Building the program is now as easy as running `bmgen` in your terminal! ## License © Broken Mouse Studios 2023<br> <https://brokenmouse.studio> This software and it's accompanying files are licensed under the *Mozilla Public License Version 2.0*. For the license's contents, see [LICENSE](LICENSE) or go to <https://mozilla.org/MPL/2.0/>. By submitting patches or merge/pull requests, you grant Broken Mouse Studios the permission to use, copy, modify, distribute, publish and/or relicense the contributions you have made to the project.


نیازمندی

مقدار نام
- colorama


زبان مورد نیاز

مقدار نام
>=3.10 Python


نحوه نصب


نصب پکیج whl bmgen-2023.5.0b0:

    pip install bmgen-2023.5.0b0.whl


نصب پکیج tar.gz bmgen-2023.5.0b0:

    pip install bmgen-2023.5.0b0.tar.gz