This repository has been archived by the owner on Sep 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
premake5.lua
82 lines (71 loc) · 1.84 KB
/
premake5.lua
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
workspace "Volante"
configurations { "Debug", "Release" }
platforms { "Any CPU" }
flags { "Symbols" }
defines { "WITH_PATRICIA", "WITH_REPLICATION", "WITH_OLD_BTREE" }
filter "action:vs*"
location "vs2015"
filter "action:monodevelop"
location "monodevelop"
defines { "MONO" }
filter {}
startproject "Tests"
project "Volante"
kind "SharedLib"
language "C#"
files { "src/*.cs", "src/impl/*.cs" }
links { "System" }
project "Tests"
kind "ConsoleApp"
language "C#"
files { "tests/Tests/*.cs" }
links { "System" }
dependson { "Volante" }
project "DirectoryScan"
kind "ConsoleApp"
language "C#"
files { "examples/DirectoryScan/*.cs", "examples/DirectoryScan/Properties/*.cs" }
links { "System" }
dependson { "Volante" }
project "Guess"
kind "ConsoleApp"
language "C#"
files { "examples/Guess/*.cs" }
links { "System" }
dependson { "Volante" }
project "IpCountry"
kind "ConsoleApp"
language "C#"
files { "examples/IpCountry/*.cs" }
links { "System" }
dependson { "Volante" }
project "PropGuess"
kind "ConsoleApp"
language "C#"
files { "examples/PropGuess/*.cs" }
links { "System" }
dependson { "Volante" }
project "TestLink"
kind "ConsoleApp"
language "C#"
files { "examples/TestLink/*.cs" }
links { "System" }
dependson { "Volante" }
project "TestSOD"
kind "ConsoleApp"
language "C#"
files { "examples/TestSOD/*.cs" }
links { "System" }
dependson { "Volante" }
project "TestSSD"
kind "ConsoleApp"
language "C#"
files { "examples/TestSSD/*.cs" }
links { "System" }
dependson { "Volante" }
project "TransparentGuess"
kind "ConsoleApp"
language "C#"
files { "examples/TransparentGuess/*.cs" }
links { "System" }
dependson { "Volante" }