You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(60) |
Jul
(35) |
Aug
(32) |
Sep
(5) |
Oct
(5) |
Nov
(58) |
Dec
(34) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(114) |
Feb
(184) |
Mar
(153) |
Apr
(90) |
May
(153) |
Jun
(59) |
Jul
(24) |
Aug
(43) |
Sep
(17) |
Oct
(34) |
Nov
(11) |
Dec
(204) |
2007 |
Jan
(84) |
Feb
(119) |
Mar
(38) |
Apr
(28) |
May
(52) |
Jun
(105) |
Jul
(64) |
Aug
(67) |
Sep
(14) |
Oct
(3) |
Nov
(28) |
Dec
(55) |
2008 |
Jan
(228) |
Feb
(55) |
Mar
(30) |
Apr
(30) |
May
(15) |
Jun
(20) |
Jul
(12) |
Aug
(3) |
Sep
(13) |
Oct
(54) |
Nov
(35) |
Dec
(35) |
2009 |
Jan
(19) |
Feb
(20) |
Mar
(34) |
Apr
(4) |
May
(60) |
Jun
(25) |
Jul
(16) |
Aug
(51) |
Sep
(19) |
Oct
(62) |
Nov
(21) |
Dec
(12) |
2010 |
Jan
(1) |
Feb
|
Mar
(4) |
Apr
(12) |
May
(23) |
Jun
(13) |
Jul
(1) |
Aug
(40) |
Sep
(18) |
Oct
(21) |
Nov
(26) |
Dec
(34) |
2011 |
Jan
(17) |
Feb
(23) |
Mar
(1) |
Apr
(10) |
May
(1) |
Jun
(5) |
Jul
(1) |
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
(43) |
2012 |
Jan
(5) |
Feb
(19) |
Mar
(6) |
Apr
(24) |
May
(39) |
Jun
(83) |
Jul
(29) |
Aug
(36) |
Sep
(64) |
Oct
(55) |
Nov
(12) |
Dec
(7) |
2013 |
Jan
(17) |
Feb
(10) |
Mar
(37) |
Apr
(27) |
May
(13) |
Jun
(9) |
Jul
(7) |
Aug
(61) |
Sep
(23) |
Oct
(23) |
Nov
(30) |
Dec
(16) |
2014 |
Jan
(23) |
Feb
(13) |
Mar
(9) |
Apr
(17) |
May
(2) |
Jun
(11) |
Jul
(2) |
Aug
|
Sep
(9) |
Oct
(24) |
Nov
(2) |
Dec
(14) |
2015 |
Jan
(6) |
Feb
(4) |
Mar
(17) |
Apr
|
May
(7) |
Jun
(3) |
Jul
|
Aug
|
Sep
(2) |
Oct
(21) |
Nov
(6) |
Dec
(2) |
2016 |
Jan
(4) |
Feb
(2) |
Mar
(7) |
Apr
(3) |
May
(11) |
Jun
(6) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2019 |
Jan
|
Feb
|
Mar
(6) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2022 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(4) |
Dec
|
2023 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(8) |
Nov
|
Dec
|
2024 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Paul K <pau...@ya...> - 2014-02-08 06:01:06
|
Hi John, > Yes, there are far more differences than I realized, you'll have to use --enable-compat28 for the near future. That's okay; I already added it to some of my build scripts, just wanted to let you know. > I have also seen some problems with the wxLua app (editor.wx.lua) not exiting for some reason with 3.0, but not 2.9.x if I remember correctly. I have seen this in my application as well, even with 2.9.5. I'd like to get to the bottom of it, but so far I've been using os.exit() at the end of my main script. For some reason, each of the platforms is guilty in some way: -- (1) to fix a crash on OSX when closing with debugging in progress. -- (2) to fix a crash on Linux 32/64bit during GC cleanup in wxlua -- after an external process has been started from the IDE. -- (3) to fix exit on Windows when started as "bin\lua src\main.lua". I just tested the last one using 2.9.5; if I don't have os.exit() at the end, the script just hangs. Not sure why... In cases 1 and 2, I do call :Detach() on the started process, but it still crashes after MainLoop is done without os.exit(). Paul. On Fri, Feb 7, 2014 at 8:44 PM, John Labenski <jla...@gm...> wrote: > On Fri, Feb 7, 2014 at 6:48 PM, Paul K <pau...@ya...> wrote: >> >> Hi John, >> >> I came across few more compilation errors when compat28 flag is not used: >> > > Yes, there are far more differences than I realized, you'll have to use > --enable-compat28 for the near future. I have also seen some problems with > the wxLua app (editor.wx.lua) not exiting for some reason with 3.0, but not > 2.9.x if I remember correctly. > > I am also thinking that the switch to 3.0 without compat28 will probably > pose problems for people since Lua won't give "compile time" errors for > missing/changed functions. It might not be too hard to make some sort of > diff file using the code from bindings.wx.lua to print the full list of > functions for each version. > > John > > > > ------------------------------------------------------------------------------ > Managing the Performance of Cloud-Based Applications > Take advantage of what the Cloud has to offer - Avoid Common Pitfalls. > Read the Whitepaper. > http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk > _______________________________________________ > wxlua-users mailing list > wxl...@li... > https://lists.sourceforge.net/lists/listinfo/wxlua-users > |
From: John L. <jla...@gm...> - 2014-02-08 04:45:00
|
On Fri, Feb 7, 2014 at 6:48 PM, Paul K <pau...@ya...> wrote: > Hi John, > > I came across few more compilation errors when compat28 flag is not used: > > Yes, there are far more differences than I realized, you'll have to use --enable-compat28 for the near future. I have also seen some problems with the wxLua app (editor.wx.lua) not exiting for some reason with 3.0, but not 2.9.x if I remember correctly. I am also thinking that the switch to 3.0 without compat28 will probably pose problems for people since Lua won't give "compile time" errors for missing/changed functions. It might not be too hard to make some sort of diff file using the code from bindings.wx.lua to print the full list of functions for each version. John |
From: Paul K <pau...@ya...> - 2014-02-07 23:48:10
|
Hi John, I came across few more compilation errors when compat28 flag is not used: [ 17%] Building CXX object modules/luamodule/CMakeFiles/wxLuaModule.dir/__/wxbind/src/wxcore_geometry.cpp.o /home/paul/zbs/build/wxlua/wxLua/modules/wxbind/src/wxcore_defsutils.cpp: In function 'int wxLua_wxMouseState_LeftDown(lua_State*)': /home/paul/zbs/build/wxlua/wxLua/modules/wxbind/src/wxcore_defsutils.cpp:455:27: error: 'class wxMouseState' has no member named 'LeftDown' bool returns = (self->LeftDown()); ^ /home/paul/zbs/build/wxlua/wxLua/modules/wxbind/src/wxcore_defsutils.cpp: In function 'int wxLua_wxMouseState_MiddleDown(lua_State*)': /home/paul/zbs/build/wxlua/wxLua/modules/wxbind/src/wxcore_defsutils.cpp:487:27: error: 'class wxMouseState' has no member named 'MiddleDown' bool returns = (self->MiddleDown()); ^ /home/paul/zbs/build/wxlua/wxLua/modules/wxbind/src/wxcore_defsutils.cpp: In function 'int wxLua_wxMouseState_RightDown(lua_State*)': /home/paul/zbs/build/wxlua/wxLua/modules/wxbind/src/wxcore_defsutils.cpp:503:27: error: 'class wxMouseState' has no member named 'RightDown' bool returns = (self->RightDown()); ^ This is using the latest trunk of wxlua and wxwidgets (compiling on Linux). The compilation proceeded successfully when I added --enable-compat28. Paul. |
From: John L. <jla...@gm...> - 2014-02-04 05:08:53
|
On Thu, Jan 30, 2014 at 1:22 AM, John Labenski <jla...@gm...> wrote: > On Tue, Jan 28, 2014 at 12:06 PM, Paul K <pau...@ya...> wrote: > >> Hi John, >> >> > It looks like there is nothing special with their URLDropTarget. I >> think that simply using the wxLuaTextDropTarget would work. I have added a >> few more methods to wxDropTarget, namely SetDataObject(), which is probably >> the key to making it work. >> >> Unfortunately I had to add a whole new class to handle it since the wxURLDataObject doesn't drive from wxTextDataObject in MSW as it does in the other ports. There is a very basic sample of its usage in htmlwin.wx.lua. Regards, John |
From: John L. <jla...@gm...> - 2014-01-30 06:22:59
|
On Tue, Jan 28, 2014 at 12:06 PM, Paul K <pau...@ya...> wrote: > Hi John, > > > It looks like there is nothing special with their URLDropTarget. I think > that simply using the wxLuaTextDropTarget would work. I have added a few > more methods to wxDropTarget, namely SetDataObject(), which is probably the > key to making it work. > > Do you by any chance have a simple example of how URLDropTarget can be > done (similar to the one you have for FileDropTarget)? I'm struggling > with converting C++ examples to Lua when these DropTarget objects are > involved as the code doesn't seem to map 1-to-1. Thank you! > > I'll give it a try tomorrow and let you know. John |
From: Paul K <pau...@ya...> - 2014-01-28 17:06:18
|
Hi John, > It looks like there is nothing special with their URLDropTarget. I think that simply using the wxLuaTextDropTarget would work. I have added a few more methods to wxDropTarget, namely SetDataObject(), which is probably the key to making it work. Do you by any chance have a simple example of how URLDropTarget can be done (similar to the one you have for FileDropTarget)? I'm struggling with converting C++ examples to Lua when these DropTarget objects are involved as the code doesn't seem to map 1-to-1. Thank you! Paul. |
From: Paul K <pau...@ya...> - 2014-01-28 07:35:12
|
Hi John, >> I'm looking for a way to provide MacNewFile, MacOpenFiles, and >> MacReopenApp methods > They need to be added, it should be doable. This would be great; thank you! > I'll try to remember, these. I'm glad you have an alternative for wxRegKey, I would > rather not add it. CallAfter() may be tricky. Please don't worry about these then. Paul |
From: John L. <jla...@gm...> - 2014-01-28 07:20:44
|
On Mon, Jan 27, 2014 at 8:33 PM, Moses McKnight <mo...@te...> wrote: > Hi, > > I am using wxlua which is embedded in a program using wxwidgets 2.8.12. > > I am trying to set client data to items in a wxChoice something like > this like this: > > somenumber = 3 > cbJointType:Append("Bevel", somenumber) > > But if I try to get the client data later it just always returns 0. > According to the wxlua ref manual it looks like this should work to me: > > int Append(const wxString& item, voidptr_long number); // C++ is (void > *clientData) You can put a number here > > http://wxlua.sourceforge.net/docs/wxluaref.html#wxItemContainer > > Am I doing something wrong here? > > No, this looks like a bug in how overloaded class member functions declared in more than one base class are handled. What you're seeing is that the call to GetClientData() is actually calling the wxEvtHandler base class function, similarly, SetClientData(n, val) also calls the wxEvtHandler function. This will require some work to fix it right. Regards, John |
From: John L. <jla...@gm...> - 2014-01-28 06:13:00
|
On Thu, Jan 23, 2014 at 10:24 PM, Paul K <pau...@ya...> wrote: > Hi John, > > Thank you for adding wxLuaFileDropTarget and TextDropTarget; these > work well for me. Now I'm trying to detect URLs dropped from the > browser, but I can't it to work. I'm looking at an example here > ( > http://books.google.com/books?id=CyMsvtgnq0QC&pg=PA299&lpg=PA299&dq=urldroptarget+url > ), > but can't figure out how this can be done in wxlua. Any hint? Thank > you. > > It looks like there is nothing special with their URLDropTarget. I think that simply using the wxLuaTextDropTarget would work. I have added a few more methods to wxDropTarget, namely SetDataObject(), which is probably the key to making it work. Hope this helps, John |
From: John L. <jla...@gm...> - 2014-01-28 05:47:29
|
On Wed, Jan 22, 2014 at 1:57 PM, Paul K <pau...@ya...> wrote: > Hi John, > > > I'm looking for a way to provide MacNewFile, MacOpenFiles, and > > MacReopenApp methods > > (http://docs.wxwidgets.org/trunk/classwx_app.html), but can't figure > > out how to do this in wxlua and don't see this in any of the examples. > > Can these methods be used with the current version of wxlua or do they > need to be added first? > > They need to be added, it should be doable. I also asked about some other things earlier: wxRegKey, CallAfter > ( > http://wxwidgets.blogspot.com/2013/01/about-benefits-of-procrastination.html > ) > and wxSTC:GetLibraryVersionInfo calls. wxRegKey is a low priority for > me as I'll probably be using winapi that provides the same > functionality. > I'll try to remember, these. I'm glad you have an alternative for wxRegKey, I would rather not add it. CallAfter() may be tricky. Regards, John |
From: Paul K <pau...@ya...> - 2014-01-28 05:36:20
|
> I have started to update wxLua for wxWidgets 3.0 without WX_COMPATIBILITY_2_8 defined, but there are far more changes than I expected and it will take a few more days. Great; thank you. > Note that wxLua builds ok with compat 28 defined in wx30. Right; this is exactly how I compiled it and it's working fine for me. Paul. |
From: John L. <jla...@gm...> - 2014-01-28 05:07:15
|
On Sun, Jan 5, 2014 at 10:09 PM, Paul K <pau...@ya...> wrote: > Hi John, > > It appears that GetBeginIter(), GetEndIter1() and GetEndIter2() have > been deprecated in the favor of GetBeginIter(), GetEndIter1() and > GetEndIter2(). > > #if WXWIN_COMPATIBILITY_2_8 > // use GetBeginIter(), GetEndIter1() and GetEndIter2() instead > wxDEPRECATED( inline int GetBeginPos() const ); > wxDEPRECATED( inline int GetEndPos1() const ); > wxDEPRECATED( inline int GetEndPos2() const ); > #endif // WXWIN_COMPATIBILITY_2_8 > > I have simply removed these for wx30, I don't think anyone uses them anyway. > Also, I ran into a strange issue with wxPrintf; I could not compile > wxlua until I uncommented includes in luamodule.cpp: > I have started to update wxLua for wxWidgets 3.0 without WX_COMPATIBILITY_2_8 defined, but there are far more changes than I expected and it will take a few more days. Note that wxLua builds ok with compat 28 defined in wx30. Regards, John |
From: John L. <jla...@gm...> - 2014-01-28 05:01:13
|
On Thu, Jan 2, 2014 at 10:42 PM, 周训华 <90...@qq...> wrote: > Hi, > I'm trying make application by wxLua。I want to post/send windows > message(in C++) to wxWindow(created in lua ),so I need get the window's > handle. But the class "wxWindow" 's method "void* GetHandle" can not return > a right value to use in C++. So,I hope the wxWindow's method "GetHandle" > return a "long" as same as in wxPython. > Looking forward to your reply,Thanks. > ------------------------------ > If you are in C++ using a wxWindow created by wxLua I would simply get the pointer to the wxWindow using one of the wxWindow::FindWindow*() functions and call GetHandle() directly. Unfortunately wxLua cannot return 'long' for wxWindow::GetHandle() since Lua only has a 'double' number datatype. wxLua uses Lua's light-userdata which is designed to hold a void* ptr. To be sure, the 'long' is simply the void* ptr casted and you can cast the void* to the HWND directly if you need to. Regards, John |
From: John L. <jla...@gm...> - 2014-01-28 04:47:38
|
On Sun, Jan 5, 2014 at 10:20 AM, Andre Arpin <ar...@ki...> wrote: > please change line 512 to: > t[i][3] = string.format("0x%X", t[i][2] < 0 and 2^32 + t[i][2] or t[i][2]) > > Thanks for the patch, applied to svn head. Regards, John > or > > t[i][3] = string.format(((t[i][2] < 0) and '-' or '') .. "0x%X", > math.abs(t[i][2])) > > > The first one displays 0xffffffff for -1 > > The second -0x1 for -1 > > I prefer the first solution. > > Thank you > Andre > > > > > > > ------------------------------------------------------------------------------ > Rapidly troubleshoot problems before they affect your business. Most IT > organizations don't have a clear picture of how application performance > affects their revenue. With AppDynamics, you get 100% visibility into your > Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics > Pro! > http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk > _______________________________________________ > wxlua-users mailing list > wxl...@li... > https://lists.sourceforge.net/lists/listinfo/wxlua-users > |
From: Moses M. <mo...@te...> - 2014-01-28 01:35:22
|
Hi, I am using wxlua which is embedded in a program using wxwidgets 2.8.12. I am trying to set client data to items in a wxChoice something like this like this: somenumber = 3 cbJointType:Append("Bevel", somenumber) But if I try to get the client data later it just always returns 0. According to the wxlua ref manual it looks like this should work to me: int Append(const wxString& item, voidptr_long number); // C++ is (void *clientData) You can put a number here http://wxlua.sourceforge.net/docs/wxluaref.html#wxItemContainer Am I doing something wrong here? Thanks, Moses |
From: Paul K <pau...@ya...> - 2014-01-24 03:24:29
|
Hi John, Thank you for adding wxLuaFileDropTarget and TextDropTarget; these work well for me. Now I'm trying to detect URLs dropped from the browser, but I can't it to work. I'm looking at an example here (http://books.google.com/books?id=CyMsvtgnq0QC&pg=PA299&lpg=PA299&dq=urldroptarget+url), but can't figure out how this can be done in wxlua. Any hint? Thank you. Paul. |
From: Paul K <pau...@ya...> - 2014-01-22 18:57:29
|
Hi John, > I'm looking for a way to provide MacNewFile, MacOpenFiles, and > MacReopenApp methods > (http://docs.wxwidgets.org/trunk/classwx_app.html), but can't figure > out how to do this in wxlua and don't see this in any of the examples. Can these methods be used with the current version of wxlua or do they need to be added first? I also asked about some other things earlier: wxRegKey, CallAfter (http://wxwidgets.blogspot.com/2013/01/about-benefits-of-procrastination.html) and wxSTC:GetLibraryVersionInfo calls. wxRegKey is a low priority for me as I'll probably be using winapi that provides the same functionality. Paul. On Tue, Dec 24, 2013 at 9:38 AM, Paul K <pau...@ya...> wrote: > Hi John, > > I'm looking for a way to provide MacNewFile, MacOpenFiles, and > MacReopenApp methods > (http://docs.wxwidgets.org/trunk/classwx_app.html), but can't figure > out how to do this in wxlua and don't see this in any of the examples. > > Can these be used somehow or do they need to be added to the bindings? > > Paul. |
From: Les N. <les...@fa...> - 2014-01-07 22:06:14
|
I'm using Ubuntu 10.04 and cmake 2.8.0. I'll have a go at using a later version and see if that helps. Thanks, Les On 07/01/14 21:07, John Labenski wrote: > > > What Linux distro and what version of CMake do you use? I suspect that > it may be CMake 2.6 which is fairly old and is missing the string(FIND > ...) function. I have committed a change that may fix the problem, > but there may be more. > > CMake builds from source pretty easily on most systems, but you can > also use the CMake binaries here: > > http://www.cmake.org/cmake/resources/software.html > > > Hope this helps, > John > |
From: Paul K <pau...@ya...> - 2014-01-07 21:36:43
|
Hi John, I managed to compile wxlua by explicitly adding --enable-compat28 to wxwidgets configuration, but would be nice to update for 3.0. Paul. On Mon, Jan 6, 2014 at 11:00 AM, Paul K <pau...@ya...> wrote: > Hi John, > > I made a copying error: it's GetBeginPos(), GetEndPos1(), and > GetEndPos2() methods that have been deprecated in the favor of > GetBeginIter(), GetEndIter1() and GetEndIter2(). > > Paul. > > On Sun, Jan 5, 2014 at 7:09 PM, Paul K <pau...@ya...> wrote: >> Hi John, >> >> It appears that GetBeginIter(), GetEndIter1() and GetEndIter2() have >> been deprecated in the favor of GetBeginIter(), GetEndIter1() and >> GetEndIter2(). >> >> #if WXWIN_COMPATIBILITY_2_8 >> // use GetBeginIter(), GetEndIter1() and GetEndIter2() instead >> wxDEPRECATED( inline int GetBeginPos() const ); >> wxDEPRECATED( inline int GetEndPos1() const ); >> wxDEPRECATED( inline int GetEndPos2() const ); >> #endif // WXWIN_COMPATIBILITY_2_8 >> >> Could you please update these methods as wxwidgets 3.x dropped 2.6 >> compatibility, so wxlua doesn't compile because of these errors: >> >> d:/Lua/ZBS-build/build/wxlua/wxLua/modules/wxbind/src/wxhtml_bind.cpp: >> In function 'int wxLua_wxHtmlTag_GetBeginPos(lua_State*)': >> d:/Lua/ZBS-build/build/wxlua/wxLua/modules/wxbind/src/wxhtml_bind.cpp:1470:26: >> error: 'class wxHtmlTag' has no member named 'GetBeginPos' >> int returns = (self->GetBeginPos()); >> ^ >> d:/Lua/ZBS-build/build/wxlua/wxLua/modules/wxbind/src/wxhtml_bind.cpp: >> In function 'int wxLua_wxHtmlTag_GetEndPos1(lua_State*)': >> d:/Lua/ZBS-build/build/wxlua/wxLua/modules/wxbind/src/wxhtml_bind.cpp:1486:26: >> error: 'class wxHtmlTag' has no member named 'GetEndPos1' >> int returns = (self->GetEndPos1()); >> ^ >> d:/Lua/ZBS-build/build/wxlua/wxLua/modules/wxbind/src/wxhtml_bind.cpp: >> In function 'int wxLua_wxHtmlTag_GetEndPos2(lua_State*)': >> d:/Lua/ZBS-build/build/wxlua/wxLua/modules/wxbind/src/wxhtml_bind.cpp:1502:26: >> error: 'class wxHtmlTag' has no member named 'GetEndPos2' >> int returns = (self->GetEndPos2()); >> ^ >> make[2]: *** [modules/luamodule/CMakeFiles/wxLuaModule.dir/__/wxbind/src/wxhtml_bind.cpp.obj] >> Error 1 >> make[1]: *** [modules/luamodule/CMakeFiles/wxLuaModule.dir/all] Error 2 >> make: *** [all] Error 2 >> >> Also, I ran into a strange issue with wxPrintf; I could not compile >> wxlua until I uncommented includes in luamodule.cpp: >> >> #include <wx/wxprec.h> >> >> #ifndef WX_PRECOMP >> #include <wx/wx.h> >> #endif >> >> These are the errors I was getting: >> >> d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp: In >> member function 'virtual bool wxLuaModuleApp::OnInit()': >> d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp:129:90: >> error: 'wxPrintf' was not declared in this scope >> wxPrintf(wxT("wxLuaModule - Error loading comctl32.dll, >> trying to continue...\n")); >> >> ^ >> d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp: In >> member function 'void wxLuaModuleApp::OnLuaPrint(wxLuaEvent&)': >> d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp:157:52: >> error: 'wxPrintf' was not declared in this scope >> wxPrintf(wxT("%s\n"), event.GetString().c_str()); fflush(stdout); >> ^ >> d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp: In >> member function 'void wxLuaModuleApp::OnLuaError(wxLuaEvent&)': >> d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp:165:74: >> error: 'wxPrintf' was not declared in this scope >> wxPrintf(wxT("wxLua Runtime Error:\n%s\n"), >> event.GetString().c_str()); fflush(stdout); >> ^ >> d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp: In >> function 'int luaopen_wx(lua_State*)': >> d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp:197:116: >> error: 'wxPrintf' was not declared in this scope >> wxPrintf(wxT("wxLuaModule - Error getting HINSTANCE, >> DllMain() wasn't called! trying to continue...\n")); >> >> ^ >> d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp:204:94: >> error: 'wxPrintf' was not declared in this scope >> wxPrintf(wxT("wxLuaModule - Error calling >> wxEntryStart(argc, argv), aborting.\n")); >> >> ^ >> d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp:210:92: >> error: 'wxPrintf' was not declared in this scope >> wxPrintf(wxT("wxLuaModule - Error calling >> wxTheApp->CallOnInit(), aborting.\n")); >> >> ^ >> make[2]: *** [modules/luamodule/CMakeFiles/wxLuaModule.dir/luamodule.cpp.obj] >> Error 1 >> make[1]: *** [modules/luamodule/CMakeFiles/wxLuaModule.dir/all] Error 2 >> make: *** [all] Error 2 >> >> Paul. |
From: John L. <jla...@gm...> - 2014-01-07 21:07:46
|
On Tue, Jan 7, 2014 at 3:27 PM, Les Newell <les...@fa...>wrote: > Hi, > > I'm trying to build wxLua with wxWidgets-3.0.0, unicode shared release > on Linux. Using cmake-gui, when I press the 'configure' button I get a > warning 'Error in configuration process'. I don't know if it makes a > difference but I am using a non-standard install prefix. > > CMake Warning at build/CMakeFunctions.cmake:271 (message): > File doesn't exist on disk : 'src/lcode.c' from dir > '/home/les/Documents/src/wxlua/build' > Call Stack (most recent call first): > build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) > modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) > modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) > > ... > > > CMake Warning at bindings/CMakeLists.txt:48 (if): > given arguments: > > "GREATER" "-1" > > Unknown arguments specified > Call Stack (most recent call first): > bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) > bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) > > What Linux distro and what version of CMake do you use? I suspect that it may be CMake 2.6 which is fairly old and is missing the string(FIND ...) function. I have committed a change that may fix the problem, but there may be more. CMake builds from source pretty easily on most systems, but you can also use the CMake binaries here: http://www.cmake.org/cmake/resources/software.html Hope this helps, John |
From: Les N. <les...@fa...> - 2014-01-07 20:27:19
|
Hi, I'm trying to build wxLua with wxWidgets-3.0.0, unicode shared release on Linux. Using cmake-gui, when I press the 'configure' button I get a warning 'Error in configuration process'. I don't know if it makes a difference but I am using a non-standard install prefix. Can anyone help me? Here is the log: * --------------------------------------------------------------------------- * CMake command line options and tips specific to this project * * In the CMake GUI you can set values and press configure a few times * and until there are no more red items, then press generate. * * Usage: cmake -D[OPTION_NAME]=[OPTION_VALUE] /path/to/CMakeLists.txt/ * --------------------------------------------------------------------------- * -DHELP=TRUE * Show this help message and exit, no files will be generated. * -DCMAKE_BUILD_TYPE=[Debug, Release, RelWithDebInfo, MinSizeRel] : (Default Debug) * Makefiles : You must set the build type to Debug, Release... * MSVC GUI : No need to set this since you can choose it in the GUI. * -DBUILD_SHARED_LIBS=[TRUE, FALSE] : (Default static in MSW, shared in Linux) * Build shared (.DLL or .so) or static (.lib or .a) libraries. * --------------------------------------------------------------------------- ***************************************************************************** * BUILD TYPE: Release * BUILD_SHARED_LIBS: ON ***************************************************************************** * System is 32-bit TRUE, is 64-bit FALSE ***************************************************************************** * CMAKE_SOURCE_DIR = /home/les/Documents/src/wxlua * CMAKE_BINARY_DIR = /home/les/Documents/src/wxlua/build-tarball ***************************************************************************** * --------------------------------------------------------------------------- * wxWidgets library settings : * * Note that ONLY an all shared (DLL) or all static build is supported. * I.E. If you choose shared you must link to shared wxWidgets libs. * Set -DBUILD_SHARED_LIBS=[TRUE, FALSE] to control shared/static lib. * * Finding wxWidgets for MSW and MSVC * -DwxWidgets_ROOT_DIR=[path] : (e.g. /path/to/wxWidgets/) * Path to the root of the wxWidgets build, must at least set this. * -DwxWidgets_LIB_DIR=[path] : (e.g. /path/to/wxWidgets/lib/vc_lib/) * Path to the wxWidgets lib dir also set this if libs can't be found. * -DwxWidgets_CONFIGURATION=[configuration] : * Set wxWidgets configuration; e.g. msw, mswu, mswunivu... * Where 'u' = unicode and 'd' = debug. * MSVC GUI : You need only choose msw, mswu, mswuniv, mswunivu since * release or debug mode is chosen in the GUI. * -DwxWidgets_COMPONENTS=[...stc;html;adv;core;base or mono] : * For non-monolithic builds choose the wxWidgets libs to link to. * xrc;xml;gl;net;media;propgrid;richtext;aui;stc;html;adv;core;base * For monolithic builds choose mono and the contribs libs. * stc;mono * The extra decorations, e.g. wxmsw28ud_adv.lib, will be searched for. * Libs that cannot be found will be printed below, please fix/remove * them to be able to build this project. * You will get compilation/linker errors if wxWidgets is not found. * * Finding wxWidgets for GCC and Unix type systems * -DwxWidgets_CONFIG_EXECUTABLE=[path/to/wx-config] : * Specify path to wx-config script for GCC and Unix type builds * --------------------------------------------------------------------------- * Using these wxWidgets components: stc;gl;xrc;xml;net;media;richtext;aui;html;adv;core;base CMake Error at build/FindPackageHandleStandardArgs.cmake:92 (INCLUDE): include could not find load file: CMakeParseArguments Call Stack (most recent call first): build/FindwxWidgets.cmake:836 (INCLUDE) build/CMakewxAppLib.cmake:256 (find_package) CMakeLists.txt:54 (FIND_WXWIDGETS) * * Found wxWidgets : * - wxWidgets_VERSION = 3.0.0 = 3.0.0 * - wxWidgets_COMPONENTS = stc;gl;xrc;xml;net;media;richtext;aui;html;adv;core;base * - wxWidgets_INCLUDE_DIRS = /home/les/Documents/src/SheetCamTNG/Setup/linux/../../../wxtarball/lib/wx/include/gtk2-unicode-3.0;/home/les/Documents/src/SheetCamTNG/Setup/linux/../../../wxtarball/include/wx-3.0 * - wxWidgets_LIBRARY_DIRS = * - wxWidgets_LIBRARIES = -L/home/les/Documents/src/SheetCamTNG/Setup/linux/../../../wxtarball/lib;-pthread;;;-lwx_gtk2u_stc-3.0;-lwx_gtk2u_gl-3.0;-lwx_gtk2u_xrc-3.0;-lwx_baseu_xml-3.0;-lwx_baseu_net-3.0;-lwx_gtk2u_media-3.0;-lwx_gtk2u_richtext-3.0;-lwx_gtk2u_aui-3.0;-lwx_gtk2u_html-3.0;-lwx_gtk2u_adv-3.0;-lwx_gtk2u_core-3.0;-lwx_baseu-3.0 * - wxWidgets_CXX_FLAGS = -pthread * - wxWidgets_DEFINITIONS = _FILE_OFFSET_BITS=64;__WXGTK__ * - wxWidgets_DEFINITIONS_DEBUG = * - wxWidgets_PORTNAME = gtk2 * - wxWidgets_UNIVNAME = * - wxWidgets_UNICODEFLAG = u * - wxWidgets_DEBUGFLAG = * * WARNING: Specified wxLuaBinding lib 'propgrid' in variable wxLuaBind_COMPONENTS is missing from wxWidgets_COMPONENTS so it will not be compiled. * wxLua using built-in Lua 5.1 library Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE) * WARNING: Doxygen NOT found, wxLua_doxygen target will not be generated. Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE) * WARNING: Doxygen NOT found, wxStEdit_doxygen target will not be generated. CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/lapi.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/lcode.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/ldebug.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/ldo.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/ldump.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/lfunc.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/lgc.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/llex.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/lmem.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/lobject.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/lopcodes.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/lparser.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/lstate.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/lstring.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/ltable.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/ltm.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/lundump.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/lvm.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/lzio.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/lauxlib.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/lbaselib.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/ldblib.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/liolib.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/lmathlib.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/loslib.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/ltablib.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/lstrlib.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/loadlib.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/linit.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:807 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:156 (ADD_LIBRARY_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Warning at build/CMakeFunctions.cmake:271 (message): File doesn't exist on disk : 'src/lua.c' from dir '/home/les/Documents/src/wxlua/build' Call Stack (most recent call first): build/CMakeFunctions.cmake:1028 (ADD_FILE_TO_LIST) modules/CMakeLists.txt:214 (ADD_EXECUTABLE_FULL) modules/lua-5.1/CMakeLists.txt:3 (wxLua_Modules_Lua_TARGETS) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Error at bindings/CMakeLists.txt:46 (string): string does not recognize sub-command FIND Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) CMake Warning at bindings/CMakeLists.txt:48 (if): given arguments: "GREATER" "-1" Unknown arguments specified Call Stack (most recent call first): bindings/CMakeLists.txt:92 (FUNCTION_ARG_PARSER) bindings/CMakeLists.txt:183 (ADD_WXLUABIND_GENERATION) Configuring incomplete, errors occurred! |
From: Paul K <pau...@ya...> - 2014-01-06 19:00:38
|
Hi John, I made a copying error: it's GetBeginPos(), GetEndPos1(), and GetEndPos2() methods that have been deprecated in the favor of GetBeginIter(), GetEndIter1() and GetEndIter2(). Paul. On Sun, Jan 5, 2014 at 7:09 PM, Paul K <pau...@ya...> wrote: > Hi John, > > It appears that GetBeginIter(), GetEndIter1() and GetEndIter2() have > been deprecated in the favor of GetBeginIter(), GetEndIter1() and > GetEndIter2(). > > #if WXWIN_COMPATIBILITY_2_8 > // use GetBeginIter(), GetEndIter1() and GetEndIter2() instead > wxDEPRECATED( inline int GetBeginPos() const ); > wxDEPRECATED( inline int GetEndPos1() const ); > wxDEPRECATED( inline int GetEndPos2() const ); > #endif // WXWIN_COMPATIBILITY_2_8 > > Could you please update these methods as wxwidgets 3.x dropped 2.6 > compatibility, so wxlua doesn't compile because of these errors: > > d:/Lua/ZBS-build/build/wxlua/wxLua/modules/wxbind/src/wxhtml_bind.cpp: > In function 'int wxLua_wxHtmlTag_GetBeginPos(lua_State*)': > d:/Lua/ZBS-build/build/wxlua/wxLua/modules/wxbind/src/wxhtml_bind.cpp:1470:26: > error: 'class wxHtmlTag' has no member named 'GetBeginPos' > int returns = (self->GetBeginPos()); > ^ > d:/Lua/ZBS-build/build/wxlua/wxLua/modules/wxbind/src/wxhtml_bind.cpp: > In function 'int wxLua_wxHtmlTag_GetEndPos1(lua_State*)': > d:/Lua/ZBS-build/build/wxlua/wxLua/modules/wxbind/src/wxhtml_bind.cpp:1486:26: > error: 'class wxHtmlTag' has no member named 'GetEndPos1' > int returns = (self->GetEndPos1()); > ^ > d:/Lua/ZBS-build/build/wxlua/wxLua/modules/wxbind/src/wxhtml_bind.cpp: > In function 'int wxLua_wxHtmlTag_GetEndPos2(lua_State*)': > d:/Lua/ZBS-build/build/wxlua/wxLua/modules/wxbind/src/wxhtml_bind.cpp:1502:26: > error: 'class wxHtmlTag' has no member named 'GetEndPos2' > int returns = (self->GetEndPos2()); > ^ > make[2]: *** [modules/luamodule/CMakeFiles/wxLuaModule.dir/__/wxbind/src/wxhtml_bind.cpp.obj] > Error 1 > make[1]: *** [modules/luamodule/CMakeFiles/wxLuaModule.dir/all] Error 2 > make: *** [all] Error 2 > > Also, I ran into a strange issue with wxPrintf; I could not compile > wxlua until I uncommented includes in luamodule.cpp: > > #include <wx/wxprec.h> > > #ifndef WX_PRECOMP > #include <wx/wx.h> > #endif > > These are the errors I was getting: > > d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp: In > member function 'virtual bool wxLuaModuleApp::OnInit()': > d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp:129:90: > error: 'wxPrintf' was not declared in this scope > wxPrintf(wxT("wxLuaModule - Error loading comctl32.dll, > trying to continue...\n")); > > ^ > d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp: In > member function 'void wxLuaModuleApp::OnLuaPrint(wxLuaEvent&)': > d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp:157:52: > error: 'wxPrintf' was not declared in this scope > wxPrintf(wxT("%s\n"), event.GetString().c_str()); fflush(stdout); > ^ > d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp: In > member function 'void wxLuaModuleApp::OnLuaError(wxLuaEvent&)': > d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp:165:74: > error: 'wxPrintf' was not declared in this scope > wxPrintf(wxT("wxLua Runtime Error:\n%s\n"), > event.GetString().c_str()); fflush(stdout); > ^ > d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp: In > function 'int luaopen_wx(lua_State*)': > d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp:197:116: > error: 'wxPrintf' was not declared in this scope > wxPrintf(wxT("wxLuaModule - Error getting HINSTANCE, > DllMain() wasn't called! trying to continue...\n")); > > ^ > d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp:204:94: > error: 'wxPrintf' was not declared in this scope > wxPrintf(wxT("wxLuaModule - Error calling > wxEntryStart(argc, argv), aborting.\n")); > > ^ > d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp:210:92: > error: 'wxPrintf' was not declared in this scope > wxPrintf(wxT("wxLuaModule - Error calling > wxTheApp->CallOnInit(), aborting.\n")); > > ^ > make[2]: *** [modules/luamodule/CMakeFiles/wxLuaModule.dir/luamodule.cpp.obj] > Error 1 > make[1]: *** [modules/luamodule/CMakeFiles/wxLuaModule.dir/all] Error 2 > make: *** [all] Error 2 > > Paul. |
From: Paul K <pau...@ya...> - 2014-01-06 03:09:24
|
Hi John, It appears that GetBeginIter(), GetEndIter1() and GetEndIter2() have been deprecated in the favor of GetBeginIter(), GetEndIter1() and GetEndIter2(). #if WXWIN_COMPATIBILITY_2_8 // use GetBeginIter(), GetEndIter1() and GetEndIter2() instead wxDEPRECATED( inline int GetBeginPos() const ); wxDEPRECATED( inline int GetEndPos1() const ); wxDEPRECATED( inline int GetEndPos2() const ); #endif // WXWIN_COMPATIBILITY_2_8 Could you please update these methods as wxwidgets 3.x dropped 2.6 compatibility, so wxlua doesn't compile because of these errors: d:/Lua/ZBS-build/build/wxlua/wxLua/modules/wxbind/src/wxhtml_bind.cpp: In function 'int wxLua_wxHtmlTag_GetBeginPos(lua_State*)': d:/Lua/ZBS-build/build/wxlua/wxLua/modules/wxbind/src/wxhtml_bind.cpp:1470:26: error: 'class wxHtmlTag' has no member named 'GetBeginPos' int returns = (self->GetBeginPos()); ^ d:/Lua/ZBS-build/build/wxlua/wxLua/modules/wxbind/src/wxhtml_bind.cpp: In function 'int wxLua_wxHtmlTag_GetEndPos1(lua_State*)': d:/Lua/ZBS-build/build/wxlua/wxLua/modules/wxbind/src/wxhtml_bind.cpp:1486:26: error: 'class wxHtmlTag' has no member named 'GetEndPos1' int returns = (self->GetEndPos1()); ^ d:/Lua/ZBS-build/build/wxlua/wxLua/modules/wxbind/src/wxhtml_bind.cpp: In function 'int wxLua_wxHtmlTag_GetEndPos2(lua_State*)': d:/Lua/ZBS-build/build/wxlua/wxLua/modules/wxbind/src/wxhtml_bind.cpp:1502:26: error: 'class wxHtmlTag' has no member named 'GetEndPos2' int returns = (self->GetEndPos2()); ^ make[2]: *** [modules/luamodule/CMakeFiles/wxLuaModule.dir/__/wxbind/src/wxhtml_bind.cpp.obj] Error 1 make[1]: *** [modules/luamodule/CMakeFiles/wxLuaModule.dir/all] Error 2 make: *** [all] Error 2 Also, I ran into a strange issue with wxPrintf; I could not compile wxlua until I uncommented includes in luamodule.cpp: #include <wx/wxprec.h> #ifndef WX_PRECOMP #include <wx/wx.h> #endif These are the errors I was getting: d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp: In member function 'virtual bool wxLuaModuleApp::OnInit()': d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp:129:90: error: 'wxPrintf' was not declared in this scope wxPrintf(wxT("wxLuaModule - Error loading comctl32.dll, trying to continue...\n")); ^ d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp: In member function 'void wxLuaModuleApp::OnLuaPrint(wxLuaEvent&)': d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp:157:52: error: 'wxPrintf' was not declared in this scope wxPrintf(wxT("%s\n"), event.GetString().c_str()); fflush(stdout); ^ d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp: In member function 'void wxLuaModuleApp::OnLuaError(wxLuaEvent&)': d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp:165:74: error: 'wxPrintf' was not declared in this scope wxPrintf(wxT("wxLua Runtime Error:\n%s\n"), event.GetString().c_str()); fflush(stdout); ^ d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp: In function 'int luaopen_wx(lua_State*)': d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp:197:116: error: 'wxPrintf' was not declared in this scope wxPrintf(wxT("wxLuaModule - Error getting HINSTANCE, DllMain() wasn't called! trying to continue...\n")); ^ d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp:204:94: error: 'wxPrintf' was not declared in this scope wxPrintf(wxT("wxLuaModule - Error calling wxEntryStart(argc, argv), aborting.\n")); ^ d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp:210:92: error: 'wxPrintf' was not declared in this scope wxPrintf(wxT("wxLuaModule - Error calling wxTheApp->CallOnInit(), aborting.\n")); ^ make[2]: *** [modules/luamodule/CMakeFiles/wxLuaModule.dir/luamodule.cpp.obj] Error 1 make[1]: *** [modules/luamodule/CMakeFiles/wxLuaModule.dir/all] Error 2 make: *** [all] Error 2 Paul. |
From: Paul K <pau...@ya...> - 2014-01-06 01:08:01
|
Hi John, > d:/Lua/ZBS-build/build/wxlua/wxLua/modules/luamodule/luamodule.cpp:39:77: > error: declaration of C function 'BOOL DllMain(HANDLE, DWORD, LPVOID)' > conflicts with > BOOL APIENTRY DllMain( HANDLE hModule, DWORD ul_reason_for_call, LPVOID ); Just a quick update on this. I tried compiling using mingw-tdm using the same version of gcc (4.8.1) and don't have this issue. Seems to be mingw-related although I'm not absolutely sure. Paul |
From: Andre A. <ar...@ki...> - 2014-01-05 15:21:09
|
please change line 512 to: t[i][3] = string.format("0x%X", t[i][2] < 0 and 2^32 + t[i][2] or t[i][2]) or t[i][3] = string.format(((t[i][2] < 0) and '-' or '') .. "0x%X", math.abs(t[i][2])) The first one displays 0xffffffff for -1 The second -0x1 for -1 I prefer the first solution. Thank you Andre |