| Summary: | build fails with 'Unknown CMake command "ki18n_wrap_ui"' | ||
|---|---|---|---|
| Product: | [Applications] krusader | Reporter: | Stefan Endrullis <stefan> |
| Component: | general | Assignee: | Krusader Bugs Distribution List <krusader-bugs-null> |
| Status: | RESOLVED NOT A BUG | ||
| Severity: | normal | CC: | clearmartin, krusader-bugs-null, stefan |
| Priority: | NOR | ||
| Version First Reported In: | Git | ||
| Target Milestone: | --- | ||
| Platform: | Ubuntu | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Stefan Endrullis
2018-01-24 08:34:21 UTC
It seems you are missing a package "ki18n". Probably "libkf5i18n-dev" in Ubuntu. libkf5i18n-dev is already installed in version 5.38.0-0ubuntu1. Oh, sorry. I can see the problem now. You are calling: cmake ../krusader instead of: cmake .. So to be precise - please try this command from your build folder: cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local/ $ cd krusader/krusader-build $ cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local/ CMake Error: The source "/home/stefan/software/krusader/CMakeLists.txt" does not match the source "/home/stefan/software/krusader/krusader/CMakeLists.txt" used to generate cache. Re-run cmake with a different source directory. Ah, I forgot to clear the cache. You're right. With ".." it works. |