forked from AbleOS/ableos
example of a new build tool for programs
This commit is contained in:
parent
89b495d318
commit
eb30ee3c12
16
sysdata/programs/test/meta.toml
Normal file
16
sysdata/programs/test/meta.toml
Normal file
|
@ -0,0 +1,16 @@
|
|||
[package]
|
||||
name = "logger_testing"
|
||||
authors = ["able"]
|
||||
|
||||
# Similar to cargo libraries
|
||||
[dependants.libraries]
|
||||
# Similar to cargo install
|
||||
[dependants.binaries]
|
||||
hblang = ""
|
||||
|
||||
[build.debug]
|
||||
command = "hblang src/main.hbl"
|
||||
|
||||
[run.debug]
|
||||
depends = ["build.debug"]
|
||||
command = ""
|
2
sysdata/programs/test/src/main.hbl
Normal file
2
sysdata/programs/test/src/main.hbl
Normal file
|
@ -0,0 +1,2 @@
|
|||
fn main() {
|
||||
}
|
Loading…
Reference in a new issue