Quantcast
Channel: Planet Object Pascal
Viewing all articles
Browse latest Browse all 1725

Andy's Blog and Tools: How to install JCL and JVCL for XE4

$
0
0

As the JCL and JVCL transition from Sourceforge to GitHub isn’t finished yet (JCL already on GitHub, JVCL still on Sourceforge) you have to do some extra work to get a working XE4 version. There is no official release that you could download. Also the “jedi.inc” sub project on Sourceforge isn’t updated to XE4 but the new https://github.com/project-jedi/jedi is. Unfortunately, the JVCL has the old jedi.inc as an svn:external, causing the JVCL’s svn head to have an outdated jvcl/common/jedi/jedi.inc that must be replaced by the updated one.

Here is a example command line “script” that you can use to install the JCL and JVCL.

git clone git://github.com/project-jedi/jcl.git jcl
cd jcl
git submodule init
git submodule update
cd ..

svn co https://jvcl.svn.sourceforge.net/svnroot/jvcl/trunk/jvcl jvcl
copy /Y jcl\jcl\source\include\jedi\*.inc jvcl\common\jedi

cd jcl\jcl
install.bat

cd ..\..\jvcl
install.bat
.csharpcode, .csharpcode pre { font-size: small; color: black; font-family: consolas, "Courier New", courier, monospace; background-color: #ffffff; /*white-space: pre;*/ } .csharpcode pre { margin: 0em; } .csharpcode .rem { color: #008000; } .csharpcode .kwrd { color: #0000ff; } .csharpcode .str { color: #006080; } .csharpcode .op { color: #0000c0; } .csharpcode .preproc { color: #cc6633; } .csharpcode .asp { background-color: #ffff00; } .csharpcode .html { color: #800000; } .csharpcode .attr { color: #ff0000; } .csharpcode .alt { background-color: #f4f4f4; width: 100%; margin: 0em; } .csharpcode .lnum { color: #606060; }

 


Viewing all articles
Browse latest Browse all 1725

Trending Articles