From: Francesco M. <f18...@ya...> - 2006-01-25 18:08:17
|
Hi, k. holwerda ha scritto: >> I like the two target names to be changed, since else i can not use >> them the same way with Cmake. >> Actually it is more a VC project problem, cmake does generate them >> correctly. >> The problem is that there is a lua executable and a lua library, and >> the same for wxlua. >> Especially the lua itself is causing me problems, since that target is >> used to generate the binding too. >> So it name should be lua(.exe) >> >> Can the library names be changed to wxlual and lual ? >> >> ( i wonder anyway what happens if our internal lua is installed, and >> it conflicts with a lua lib installed form some other source. So it >> might not be a bad idea to name ours different. ) I agree we need to redefine the names of the libraries created by wxLua. Specially to avoid conflicts with LUA libraries installed from other sources, if this is necessary. So, 1) is the lua library compiled with wxLua different from the 'standard/official' lua library ? I think it is because I saw the symbol WXLUA_CODE defined when compiling lua... 2) how do we name the wxLua libraries ? Currently I see in wxLua/lib: -rw-r--r-- 1 frm frm 674700 2006-01-24 10:13 liblua.a -rw-r--r-- 1 frm frm 128872 2006-01-20 13:40 liblualib.a -rw-r--r-- 1 frm frm 13821610 2006-01-25 18:47 libwxbind.a -rw-r--r-- 1 frm frm 1706004 2006-01-24 10:14 libwxlua.a -rw-r--r-- 1 frm frm 1320170 2006-01-24 10:19 libwxluadebug.a -rw-r--r-- 1 frm frm 1812618 2006-01-24 10:19 libwxluasocket.a but I know that John's hand written makefiles have a more wx-like library namings. We could name them as: libwxlua_[gtk2|x11|msw|...][u][d]_lua-[wxversion].so.0 libwxlua_[gtk2|x11|msw|...][u][d]_lualib-[wxversion].so.0 libwxlua_[gtk2|x11|msw|...][u][d]_wxbind-[wxversion].so.0 libwxlua_[gtk2|x11|msw|...][u][d]_wxlua-[wxversion].so.0 libwxlua_[gtk2|x11|msw|...][u][d]_wxluadebug-[wxversion].so.0 libwxlua_[gtk2|x11|msw|...][u][d]_wxluasocket-[wxversion].so.0 Do you agree ? Francesco |