-
Notifications
You must be signed in to change notification settings - Fork 0
/
bonk.fsproj
35 lines (35 loc) · 1.31 KB
/
bonk.fsproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<WarnOn>3390;$(WarnOn)</WarnOn>
<Tailcalls>True</Tailcalls>
</PropertyGroup>
<ItemGroup>
<Compile Include="plonk/src/Util.fs" />
<Compile Include="plonk/src/State.fs" />
<Compile Include="plonk/src/Combinator.fs" />
<Compile Include="plonk/src/Common.fs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="lib/bonk/prelude.bonk" />
<EmbeddedResource Include="lib/bonk/prelude_js.bonk" />
<EmbeddedResource Include="lib/bonk/builtins_js.bonk" />
<EmbeddedResource Include="lib/js/intrinsics.js" />
<Compile Include="src/Repr.fs" />
<Compile Include="src/Prelude.fs" />
<Compile Include="src/Monad.fs" />
<Compile Include="src/Pretty.fs" />
<Compile Include="src/ReprUtil.fs" />
<Compile Include="src/Lex.fs" />
<Compile Include="src/Parse.fs" />
<Compile Include="src/Semantics.fs" />
<Compile Include="src/Inference.fs" />
<Compile Include="src/Lower.fs" />
<Compile Include="src/CodeGen.fs" />
<Compile Include="src/Repl.fs" />
<Compile Include="src/Pipeline.fs" />
<Compile Include="src/Tests.fs" />
<Compile Include="src/Main.fs" />
</ItemGroup>
</Project>