diff -ru wx.NET-0.7.2/Samples/premake.lua wx.NET-0.7.2-mine/Samples/premake.lua --- wx.NET-0.7.2/Samples/premake.lua 2005-04-30 19:27:53.000000000 +0200 +++ wx.NET-0.7.2-mine/Samples/premake.lua 2006-02-19 14:47:53.000000000 +0100 @@ -4,40 +4,34 @@ project.name = "Samples" project.bindir = "../Bin" -option("with-display", "Enable Display sample") +addoption("with-display", "Enable Display sample") -include("Controls") -include("Dialogs") -include("Minimal") -include("Printing") -include("Splitter") -include("TreeCtrl") -include("Tutorial") -include("Wizard") -include("DbGrid") -include("Dnd") -include("HTML") -include("Font") -include("Notebook") -include("Mdi") -include("Grid") -include("HtmlListBox") +loadfile("Controls") +loadfile("Dialogs") +loadfile("Minimal") +loadfile("Printing") +loadfile("Splitter") +loadfile("TreeCtrl") +loadfile("Tutorial") +loadfile("Wizard") +loadfile("DbGrid") +loadfile("Dnd") +loadfile("HTML") +loadfile("Font") +loadfile("Notebook") +loadfile("Mdi") +loadfile("Grid") +loadfile("HtmlListBox") if (options["with-display"]) then - include("Display") + loadfile("Display") end -include("Xrc") -include("EventDemo") -include("Listbook") -include("SashWindow") -include("Launcher") -include("ListView") -include("HtmlHelp") -include("Internat") -include("ListCtrl") -include("Thread") - - - - - - +loadfile("Xrc") +loadfile("EventDemo") +loadfile("Listbook") +loadfile("SashWindow") +loadfile("Launcher") +loadfile("ListView") +loadfile("HtmlHelp") +loadfile("Internat") +loadfile("ListCtrl") +loadfile("Thread") diff -ru wx.NET-0.7.2/premake.lua wx.NET-0.7.2-mine/premake.lua --- wx.NET-0.7.2/premake.lua 2004-12-13 01:43:20.000000000 +0100 +++ wx.NET-0.7.2-mine/premake.lua 2006-02-19 14:47:14.000000000 +0100 @@ -7,10 +7,10 @@ ----------------------------------------------------------------------- -- Additional packages -option("enable-stc", "Enable StyledTextCtrl (wxStyledTextCtrl)") +addoption("enable-stc", "Enable StyledTextCtrl (wxStyledTextCtrl)") ----------------------------------------------------------------------- -include("Src/wx-c") -include("Src/wx.NET") +loadfile("Src/wx-c") +loadfile("Src/wx.NET")