Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 71086 | Differences between
and this patch

Collapse All | Expand All

(-)wx.NET-0.7.2/Samples/premake.lua (-34 / +28 lines)
Lines 4-43 Link Here
4
project.name   = "Samples"
4
project.name   = "Samples"
5
project.bindir = "../Bin"
5
project.bindir = "../Bin"
6
6
7
option("with-display", "Enable Display sample")
7
addoption("with-display", "Enable Display sample")
8
8
9
include("Controls")
9
loadfile("Controls")
10
include("Dialogs")
10
loadfile("Dialogs")
11
include("Minimal")
11
loadfile("Minimal")
12
include("Printing")
12
loadfile("Printing")
13
include("Splitter")
13
loadfile("Splitter")
14
include("TreeCtrl")
14
loadfile("TreeCtrl")
15
include("Tutorial")
15
loadfile("Tutorial")
16
include("Wizard")
16
loadfile("Wizard")
17
include("DbGrid")
17
loadfile("DbGrid")
18
include("Dnd")
18
loadfile("Dnd")
19
include("HTML")
19
loadfile("HTML")
20
include("Font")
20
loadfile("Font")
21
include("Notebook")
21
loadfile("Notebook")
22
include("Mdi")
22
loadfile("Mdi")
23
include("Grid")
23
loadfile("Grid")
24
include("HtmlListBox")
24
loadfile("HtmlListBox")
25
if (options["with-display"]) then
25
if (options["with-display"]) then
26
	include("Display")
26
	loadfile("Display")
27
end
27
end
28
include("Xrc")
28
loadfile("Xrc")
29
include("EventDemo")
29
loadfile("EventDemo")
30
include("Listbook")
30
loadfile("Listbook")
31
include("SashWindow")
31
loadfile("SashWindow")
32
include("Launcher")
32
loadfile("Launcher")
33
include("ListView")
33
loadfile("ListView")
34
include("HtmlHelp")
34
loadfile("HtmlHelp")
35
include("Internat")
35
loadfile("Internat")
36
include("ListCtrl")
36
loadfile("ListCtrl")
37
include("Thread")
37
loadfile("Thread")
38
39
40
41
42
43
(-)wx.NET-0.7.2/Utils/premake.lua (-2 / +2 lines)
Lines 4-8 Link Here
4
project.name   = "Utils"
4
project.name   = "Utils"
5
project.bindir = "../Bin"
5
project.bindir = "../Bin"
6
6
7
include("TowxNET/Src")
7
loadfile("TowxNET/Src")
8
include("TowxNET/Src/RJH.CommandLineHelper")
8
loadfile("TowxNET/Src/RJH.CommandLineHelper")
(-)wx.NET-0.7.2/premake.lua (-3 / +3 lines)
Lines 7-16 Link Here
7
-----------------------------------------------------------------------
7
-----------------------------------------------------------------------
8
-- Additional packages
8
-- Additional packages
9
9
10
option("enable-stc", "Enable StyledTextCtrl (wxStyledTextCtrl)")
10
addoption("enable-stc", "Enable StyledTextCtrl (wxStyledTextCtrl)")
11
11
12
-----------------------------------------------------------------------
12
-----------------------------------------------------------------------
13
13
14
include("Src/wx-c")
14
loadfile("Src/wx-c")
15
include("Src/wx.NET")
15
loadfile("Src/wx.NET")
16
16

Return to bug 71086