-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
35 lines (29 loc) · 1.32 KB
/
Directory.Build.props
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>
<PropertyGroup>
<UseLuaSettings Condition="'$(UseLuaSettings)' == ''">false</UseLuaSettings>
</PropertyGroup>
<PropertyGroup Condition="'$(UseLuaSettings)' == 'true'">
<UseHashSets>false</UseHashSets>
<UseBitArray>false</UseBitArray>
<LocationAsStruct>false</LocationAsStruct>
<UseSharedInstances>false</UseSharedInstances>
<UseVectors>false</UseVectors>
<UseStackalloc>false</UseStackalloc>
<RentNeighbors>true</RentNeighbors>
<EnableVisualizer>false</EnableVisualizer>
<EnableGridToString>true</EnableGridToString>
<AllowDynamicFluteDegree>false</AllowDynamicFluteDegree>
</PropertyGroup>
<PropertyGroup>
<UseHashSets Condition="'$(UseHashSets)' == ''">true</UseHashSets>
<DefineConstants Condition="$(UseHashSets) == 'true'">$(DefineConstants);USE_HASHSETS</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<UseBitArray Condition="'$(UseBitArray)' == ''">true</UseBitArray>
<DefineConstants Condition="$(UseBitArray) == 'true'">$(DefineConstants);USE_BITARRAY</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<LocationAsStruct Condition="'$(LocationAsStruct)' == ''">true</LocationAsStruct>
<DefineConstants Condition="$(LocationAsStruct) == 'true'">$(DefineConstants);LOCATION_AS_STRUCT</DefineConstants>
</PropertyGroup>
</Project>