Wanted to switch to Kubuntu and decided a clean install was the way to go. Though the learning curve isn't too tough, I've hit a serious snag: When I try to compile a source package according to the similar instructions in each of the README files, I get the same error message;
Instructions:
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` ..
make
su -c 'make install'
kbuildsycoca4
When I run the 'cmake' terminal command on the third line, I get this spat at me:
CMake Error at CMakeLists.txt:3 (kde4_add_plugin):
Unknown CMake command "kde4_add_plugin".
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!
Two problems here: first, the warning about "cmake_minimum_required"... there is such a line right at the top of the file. The second problem is that the terminal barks out that a particular command is unfamiliar: the "kde4_add_plugin" command.
What's the deal? I'm liking this KDE 4.4 setup, but if I can't install the improvements from kde-look.org I'm gonna be none too happy. Please, help!
For an example of what I'm looking at, see:
http://kde-look.org/content/show.php...b7afd6da127cff
Instructions:
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` ..
make
su -c 'make install'
kbuildsycoca4
When I run the 'cmake' terminal command on the third line, I get this spat at me:
CMake Error at CMakeLists.txt:3 (kde4_add_plugin):
Unknown CMake command "kde4_add_plugin".
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!
Two problems here: first, the warning about "cmake_minimum_required"... there is such a line right at the top of the file. The second problem is that the terminal barks out that a particular command is unfamiliar: the "kde4_add_plugin" command.
What's the deal? I'm liking this KDE 4.4 setup, but if I can't install the improvements from kde-look.org I'm gonna be none too happy. Please, help!
For an example of what I'm looking at, see:
http://kde-look.org/content/show.php...b7afd6da127cff
Comment