-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
61 lines (55 loc) · 1.12 KB
/
package.yaml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
id: Lisp
namespace: Cultlang
name: Cult Semantics
version: "1.0.0"
repo: http://github.com/OffByOneStudios/craft-lisp
entry-name: cult
dependencies:
- Util
- Types
vendor-dependencies:
x86_64-pc-windows-msvccoff:
- "replxx"
x86_64-apple-macosx-macho:
- "replxx"
x86_64-pc-linux-gnu:
- "replxx"
platform-dependencies:
x86_64-pc-windows-msvccoff: []
x86_64-apple-macosx-macho: []
x86_64-pc-linux-gnu:
- "pthread"
- "dl"
platform-compile-flags:
x86_64-pc-windows-msvccoff:
- "/std:c++latest"
x86_64-apple-macosx-macho:
- "-std=c++1z"
- "-stdlib=libc++"
- "-Wc++11-extensions"
x86_64-pc-linux-gnu:
- "-std=gnu++1z"
- "-pthread"
- "-fpermissive"
platform-link-flags:
x86_64-pc-windows-msvccoff:
- "/ignore:4099"
platform-defines:
x86_64-pc-windows-msvccoff:
_SILENCE_ALL_CXX17_DEPRECATION_WARNINGS: yes
x86_64-apple-macosx-macho: {}
x86_64-pc-linux-gnu: {}
artifacts:
library:
primary: yes
kind: dll craft-types
files:
- src/**/*.*
test:
kind: test
files:
- test/**/*.*
entry:
kind: exe
files:
- entry/**/*.*