gemstone/tests/box/build.toml

23 lines
489 B
TOML
Raw Normal View History

2024-08-11 16:40:20 +00:00
[project]
name = "Stdlib tests"
version = "0.1.0"
description = "Test applications for the GSC standard library."
license = "GPL-2.0"
authors = [ "Sven Vogel <sven.vogel123@web.de>" ]
2024-09-01 14:55:53 +00:00
[[targets]]
name = "prime"
2024-08-11 16:40:20 +00:00
import-paths = [ "." ]
2024-09-17 17:42:01 +00:00
link-paths = [ "/usr/lib" ]
2024-08-11 16:40:20 +00:00
root = "main.gsc"
mode = "application"
output = "bin"
archive = "archive"
2024-09-01 14:55:53 +00:00
driver = "ld.lld"
print_asm = true
print_ir = true
print_ast = true
2024-08-11 16:40:20 +00:00
2024-09-01 14:55:53 +00:00
[targets.dependencies]
2024-09-17 17:42:01 +00:00
std = { build-path = "../../lib/src", target = "gsc-libc" }