Update of /cvsroot/wxlua/wxLua/modules/build/bakefiles
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24985/modules/build/bakefiles
Modified Files:
modules.bkl
Log Message:
Index: modules.bkl
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/build/bakefiles/modules.bkl,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** modules.bkl 20 Jun 2005 09:02:57 -0000 1.6
--- modules.bkl 20 Jun 2005 09:48:36 -0000 1.7
***************
*** 173,176 ****
--- 173,181 ----
<!-- -->
<!-- The list of wxLua MODULES -->
+ <!-- -->
+ <!-- NOTE: the 'mod_' prefix in the ID is mainly because in this way the -->
+ <!-- DSP files generated by this bakefile makes clear for the user what -->
+ <!-- is a module, what is an app (since app bakefile uses 'app_' prefix) -->
+ <!-- and what is a util... -->
<!-- -->
***************
*** 181,185 ****
NOTE: we won't use the lua_lib rule since the LUA module does not follow
the same conventions followed by other modules... -->
! <lib id="lua_lib">
<sources>$(lua_src) $(lualib_src)</sources>
<headers>(lua_hdr) $(lualib_hdr)</headers>
--- 186,190 ----
NOTE: we won't use the lua_lib rule since the LUA module does not follow
the same conventions followed by other modules... -->
! <lib id="mod_lua_lib">
<sources>$(lua_src) $(lualib_src)</sources>
<headers>(lua_hdr) $(lualib_hdr)</headers>
***************
*** 191,196 ****
<!-- this is the lua app
NOTE: like for lua_lib we don't use any wxLua-project-specific rule here -->
! <exe id="lua">
! <library>lua_lib</library>
<sources>lua/src/lua/lua.c</sources>
<include>$(WXLUA_MODULEDIR)$(DIRSEP)lua$(DIRSEP)include</include>
--- 196,201 ----
<!-- this is the lua app
NOTE: like for lua_lib we don't use any wxLua-project-specific rule here -->
! <exe id="mod_lua">
! <library>mod_lua_lib</library>
<sources>lua/src/lua/lua.c</sources>
<include>$(WXLUA_MODULEDIR)$(DIRSEP)lua$(DIRSEP)include</include>
***************
*** 239,243 ****
gets a good idea about what is a MODULE and what is a SAMPLE (see the a2d_sample rule) -->
<set var="MSVC6PRJ_MERGED_TARGETS">
!
</set>
--- 244,251 ----
gets a good idea about what is a MODULE and what is a SAMPLE (see the a2d_sample rule) -->
<set var="MSVC6PRJ_MERGED_TARGETS">
! mod_wxlua=wxlua_lib+wxlua_dll
! mod_wxbind=wxbind_lib+wxbind_dll
! mod_wxluadebug=wxluadebug_lib+wxluadebug_dll
! mod_wxluasocket=wxluasocket_lib+wxluasocket_dll
</set>
|