An open API service indexing awesome lists of open source software.

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 ...

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).