https://github.com/atypicalim/my-build-tools
Personal build tools repository ...
https://github.com/atypicalim/my-build-tools
build c lua
Last synced: about 1 month ago
JSON representation
Personal build tools repository ...
- Host: GitHub
- URL: https://github.com/atypicalim/my-build-tools
- Owner: Atypicalim
- Created: 2022-01-24T11:47:52.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-12T11:35:47.000Z (almost 2 years ago)
- Last Synced: 2024-08-29T11:55:46.134Z (almost 2 years ago)
- Topics: build, c, lua
- Language: Python
- Homepage:
- Size: 3.6 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
## My Build Tools
### 0. Description
> this is a personal package management and building tool for c, we can merge codes and build single executable programs with it, there are some template projects in `./template/` directory showing how to use it.
### 1. Installing
> just clone this repository to your workspace.
### 2. Usage
```python
import builder
task = builder.C({
'name': "myTest",
'input':"./test.c",
'output':"test",
})
task.setDebug(False)
task.setLibs([])
task.setIcon('./test.ico')
task.start()
task.run()
```
### 3. Builders
* c
* lua
* code
* html
* htmx
### 4. Libs
* lua
* raylib
* webview
* base64
* dyad
* thread
* ...
### 3. More
> for more information please visit [github](https://github.com/atypicalim/my-build-tools).