-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.sdl
41 lines (41 loc) · 912 Bytes
/
dub.sdl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name "alis"
description "a scripting language"
authors "Nafees Hassan" "Sheikh Muhammad Talha" "Usman Amjad"
copyright "Copyright © 2024, Nafees Hassan, Sheikh Muhammad Talha, Usman Amjad"
license "proprietary"
dependency "utils" version="~>0.9.0"
configuration "default" {
targetType "executable"
targetName "alis"
versions "standalone"
}
configuration "library" {
targetType "library"
targetName "alis"
versions "library"
}
configuration "lexer" {
targetType "executable"
targetName "alis-lexer"
versions "lexer"
}
configuration "parser" {
targetType "executable"
targetName "alis-parser"
versions "parser"
}
configuration "semantic" {
targetType "executable"
targetName "alis-semantic"
versions "semantic"
}
configuration "codegen" {
targetType "executable"
targetName "alis-codegen"
versions "codegen"
}
configuration "vm" {
targetType "executable"
targetName "alis-vm"
versions "vm"
}