On Fri, Aug 26, 2011 at 12:54 PM, Marc-André Moreau
<marcandre.mor...@gmail.com> wrote:
> Hi all,
> As 1.0 progresses, people are slowly getting used to cmake. There are still
> many things which aren't obvious to newcomers though, and I am still
> learning a lot.
> Is there anyone experienced with cmake that would like to work on
> documenting its usage on the wiki?
> Generate makefiles:
> cmake .
> Generate Eclipse project files:
> cmake -G"Eclipse CDT4 - Unix Makefiles"
> Delete cmake cache:
> rm CMakeCache.txt (is there any other way?)
> configure options:
> ccmake . (is there any other way than using ccmake?)
> How do we:
> Generate Release vs Debug project files (default seems to be release)
> and other things like this
> Regards,
> - Marc-Andre

As was mentioned before, it is customary to build "out-of-tree" with cmake:

# mkdir build
# cd build
# cmake \
     -D<OPTION1> \
     -D<OPTION2> \
     ..
# make
# make install
# <etc... etc...>

I'll do some testing this weekend building the current snapshot.

--
Niels

------------------------------------------------------------------------------
EMC VNX: the world's simplest storage, starting under $10K
The only unified storage solution that offers unified management 
Up to 160% more powerful than alternatives and 25% more efficient. 
Guaranteed. http://p.sf.net/sfu/emc-vnx-dev2dev
_______________________________________________
Freerdp-devel mailing list
Freerdp-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freerdp-devel

Reply via email to