Re: [kaffeine-devel] setup dev
Brought to you by:
hftom,
lasselindqvist
|
From: Eldon T. <dr....@gm...> - 2012-08-10 06:27:43
|
i believe it works like this, that's how i use it anyways : in kaff git root dir, create a "build" directory and go in it. then use the command "cmake ..", then the usual "make" and "sudo make install" if you need to specify configure options it's a little more complicated with cmake, i actually don't know how to get the full list of options the way it's done with "./configure --help". I usually on use one or two predefined options -DCMAKE_BUILD_TYPE=Release (or Debug) -DCMAKE_INSTALL_PREFIX=/usr the command then looks like this, inside your "build" directory : "cmake -DCMAKE_INSTALL_PREFIX=/usr .." One last thing i noticed with cmake is that i don't know if it's possible to completely reset the configuration, so if you change something major in your libs such as libxine or v4l dvb versions for example, then you have to delete your build dir and create a new empty one and perform the same process.. good luck Marc On 08/10/2012 02:47 AM, James wrote: > I need help getting kaffeine to compile. > > I use Gentoo and my packages are up-to-date. > I did this and ran into a problem. > > > git clone git://anongit.kde.org/kaffeine.git > > build # cmake ../src > CMake Error at CMakeLists.txt:42 (kde4_add_executable): > Unknown CMake command "kde4_add_executable". > > > CMake Warning (dev) in CMakeLists.txt: > No cmake_minimum_required command is present. A line of code such as > > cmake_minimum_required(VERSION 2.8) > > should be added at the top of the file. The version specified may be lower > if you wish to support older CMake versions for this project. For more > information run "cmake --help-policy CMP0000". > This warning is for project developers. Use -Wno-dev to suppress it. > > -- Configuring incomplete, errors occurred! > > ------------------------------------------------------------------------------ > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > _______________________________________________ > kaffeine-devel mailing list > kaf...@li... > https://lists.sourceforge.net/lists/listinfo/kaffeine-devel > |