trinity-devel@lists.pearsoncomputing.net

Message: previous - next
Month: November 2012

Re: [trinity-devel] tqtinterface cmake files

From: Slávek Banko <slavek.banko@...>
Date: Tue, 6 Nov 2012 07:55:39 +0100
On Tuesday 06 of November 2012 03:21:57 cricketc@... wrote:
> Hello,
>
> I'm trying to build tqtinterface (with cmake). I cloned tqtinterface
> from git, but the tqtinterface/cmake directory seems to be empty, and
> I get an error on TDE_Macros and tde_save. I see the TDEMacros file in
> the cmake module, but I get an error when I try to clone cmake like I
> did tqtinterface.
>
> git clone http://scm.trinitydesktop.org/scm/git/cmake
> Cloning into 'cmake'...
> fatal: http://scm.trinitydesktop.org/scm/git/cmake/info/refs not
> found: did you run git update-server-info on the server?
>
> What's the process for referencing the cmake shared files when I'm
> building tqtinterface?
>
> Thanks,
> -Ben
>

It is absolutely right that after cloning tqtinterface are folders admin and 
cmake empty. It is a git submodules which must be initialized separately 
after cloning:

git clone http://scm.trinitydesktop.org/scm/git/tqtinterface
cd tqtinterface
git submodule init && git submodule update

See http://www.trinitydesktop.org/wiki/bin/view/Developers/GIT - chapter To 
check out a single project.

Slavek
--