diff options
author | scuri <scuri> | 2009-06-26 19:43:11 +0000 |
---|---|---|
committer | scuri <scuri> | 2009-06-26 19:43:11 +0000 |
commit | c004040cfa03696613b016a65f2785f0a68f551d (patch) | |
tree | 37dc42b0504b89dc1dd9a0b39ed117686917e271 | |
parent | 9adfbc631966059ee244d95ded27cb10ed6a5123 (diff) |
*** empty log message ***
-rw-r--r-- | html/en/download_tips.html | 27 | ||||
-rw-r--r-- | src/tecmake_compact.mak | 6 |
2 files changed, 20 insertions, 13 deletions
diff --git a/html/en/download_tips.html b/html/en/download_tips.html index b7bd258..47286c2 100644 --- a/html/en/download_tips.html +++ b/html/en/download_tips.html @@ -94,19 +94,22 @@ stub libraries and Includes for Windows to use with Visual C++ 3) "-liup" to specify the library files</pre> <p>For IDEs the configuration involves the same 3 steps above, but each IDE has a different dialog. The IUP toolkit has a Guide for some IDEs:</p> -<p class="info"><strong>Open Watcom</strong> - <a href="http://www.tecgraf.puc-rio.br/iup/en/ide_guide/owc.html">http://www.tecgraf.puc-rio.br/iup/en/ide_guide/owc.html</a> -<br> - <strong>Dev-C++</strong> - <a href="http://www.tecgraf.puc-rio.br/iup/en/ide_guide/dev-cpp.html">http://www.tecgraf.puc-rio.br/iup/en/ide_guide/dev-cpp.html</a> -<br> +<p class="info"> <strong>Borland C++ BuilderX</strong> - <a href="http://www.tecgraf.puc-rio.br/iup/en/ide_guide/cppbx.html">http://www.tecgraf.puc-rio.br/iup/en/ide_guide/cppbx.html</a><br> - <strong>Microsoft Visual C++</strong> (Visual Studio 2003) - -<a href="http://www.tecgraf.puc-rio.br/iup/en/ide_guide/msvc.html">http://www.tecgraf.puc-rio.br/iup/en/ide_guide/msvc.html</a><br> - <strong>Microsoft Visual C++</strong> (Visual Studio 2005) - -<a href="http://www.tecgraf.puc-rio.br/iup/en/ide_guide/msvc8.html">http://www.tecgraf.puc-rio.br/iup/en/ide_guide/msvc8.html</a><br> +<strong>Code Blocks</strong> - <a href="http://www.tecgraf.puc-rio.br/iup/en/ide_guide/codeblocks.html">http://www.tecgraf.puc-rio.br/iup/en/ide_guide/codeblocks.html</a><br> + <strong>Dev-C++</strong> - <a href="http://www.tecgraf.puc-rio.br/iup/en/ide_guide/dev-cpp.html">http://www.tecgraf.puc-rio.br/iup/en/ide_guide/dev-cpp.html</a> +<br> <strong>Eclipse for C++</strong> - <a href="http://www.tecgraf.puc-rio.br/iup/en/ide_guide/eclipse.html"> http://www.tecgraf.puc-rio.br/iup/en/ide_guide/eclipse.html</a> +<br> +<strong>Microsoft Visual C++</strong> (Visual Studio 2003) - +<a href="http://www.tecgraf.puc-rio.br/iup/en/ide_guide/msvc.html">http://www.tecgraf.puc-rio.br/iup/en/ide_guide/msvc.html</a><br> + <strong>Microsoft Visual C++</strong> (Visual Studio 2005) - +<a href="http://www.tecgraf.puc-rio.br/iup/en/ide_guide/msvc8.html">http://www.tecgraf.puc-rio.br/iup/en/ide_guide/msvc8.html</a><br> +<strong>Open Watcom</strong> - <a href="http://www.tecgraf.puc-rio.br/iup/en/ide_guide/owc.html">http://www.tecgraf.puc-rio.br/iup/en/ide_guide/owc.html</a> +<br> </p> <h3><a name="plat">Available Platforms</a></h3> <p>The following platforms can be available:</p> @@ -282,13 +285,15 @@ http://www.tecgraf.puc-rio.br/iup/en/ide_guide/eclipse.html</a> <a href="http://www.mingw.org/" style="text-decoration: none">http://www.mingw.org/</a> ¹<br> Also compatible with Dev-C++ - - <a href="http://www.bloodshed.net/devcpp.html" style="text-decoration: none">http://www.bloodshed.net/devcpp.html</a> + <a href="http://www.bloodshed.net/devcpp.html" style="text-decoration: none">http://www.bloodshed.net/devcpp.html</a><br> + and with Code Blocks - <a href="http://www.codeblocks.org/"> + http://www.codeblocks.org/</a> ¹</td> </tr> <tr> <td bgcolor="#C0C0C0" align="right"><b>Win32_mingw4</b></td> - <td bgcolor="#C0C0C0"> MingW gcc 4.x (unofficial) - - <a href="http://www.develer.com/oss/GccWinBinaries" style="text-decoration: none">http://www.develer.com/oss/GccWinBinaries</a> + <td bgcolor="#C0C0C0"> MingW gcc 4.4 - + <a href="http://www.mingw.org/" style="text-decoration: none">http://www.mingw.org/</a> ¹</td> </tr> <tr> diff --git a/src/tecmake_compact.mak b/src/tecmake_compact.mak index d1a61ff..d4fe0af 100644 --- a/src/tecmake_compact.mak +++ b/src/tecmake_compact.mak @@ -635,8 +635,10 @@ ifdef USE_LUA ifndef NO_LUALIB LIBS += lualib$(LUASUFX) endif - LIBS += lua$(LUASUFX) - LDIR += $(LUA_LIB) + ifndef NO_LUALINK + LIBS += lua$(LUASUFX) + LDIR += $(LUA_LIB) + endif endif LUA_INC ?= $(LUA)/include |