mirror of https://github.com/buggins/dlangui.git
fix mono-D project / linux build
This commit is contained in:
parent
c898bf6683
commit
a61c611433
|
@ -180,6 +180,8 @@
|
||||||
<Compile Include="src\dlangui\graphics\resources.d" />
|
<Compile Include="src\dlangui\graphics\resources.d" />
|
||||||
<Compile Include="src\dlangui\widgets\menu.d" />
|
<Compile Include="src\dlangui\widgets\menu.d" />
|
||||||
<Compile Include="src\dlangui\widgets\popup.d" />
|
<Compile Include="src\dlangui\widgets\popup.d" />
|
||||||
|
<Compile Include="src\dlangui\core\collections.d" />
|
||||||
|
<Compile Include="src\dlangui\core\signals.d" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="src\dlangui\platforms\x11\" />
|
<Folder Include="src\dlangui\platforms\x11\" />
|
||||||
|
|
|
@ -52,6 +52,6 @@
|
||||||
<Target>Executable</Target>
|
<Target>Executable</Target>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="src/main.d" />
|
<Compile Include="src\main.d" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
|
@ -36,8 +36,6 @@ import dlangui.platforms.common.platform;
|
||||||
|
|
||||||
import std.algorithm;
|
import std.algorithm;
|
||||||
|
|
||||||
alias onClick_t = bool delegate(Widget);
|
|
||||||
|
|
||||||
|
|
||||||
/// Visibility (see Android View Visibility)
|
/// Visibility (see Android View Visibility)
|
||||||
enum Visibility : ubyte {
|
enum Visibility : ubyte {
|
||||||
|
|
Loading…
Reference in New Issue