123456789101112131415161718192021 |
- project('lonely tiger', 'c')
- src = [
- 'Main.c',
- 'tokenizer/Tokenizer.c',
- 'tokenizer/Token.c',
- 'tokenizer/File.c',
- 'Compiler.c',
- 'Utils.c',
- 'Script.c',
- 'Test.c',
- 'StringIntMap.c',
- 'ByteCode.c',
- 'FunctionMap.c',
- 'Object.c',
- 'Allocator.c'
- ]
- executable('lonely_tiger',
- sources: src,
- c_args: ['-Wall', '-Wextra', '-pedantic', '-Werror', '-O3'])
|