20 lines
404 B
TOML
20 lines
404 B
TOML
|
[project]
|
||
|
name = "print C string test"
|
||
|
version = "0.1.0"
|
||
|
description = "Print a string to stdout"
|
||
|
license = "GPL-2.0"
|
||
|
authors = [ "Sven Vogel <sven.vogel123@web.de>" ]
|
||
|
|
||
|
[target.release]
|
||
|
link-paths = [ "../../bin/std" ]
|
||
|
import-paths = [ "../../lib/src" ]
|
||
|
driver = "gcc"
|
||
|
root = "main.gsc"
|
||
|
mode = "application"
|
||
|
output = "bin"
|
||
|
archive = "archive"
|
||
|
print_ast = false
|
||
|
print_asm = false
|
||
|
print_ir = false
|
||
|
opt = 3
|