我正在尝试在我的 lubuntu 15.04 上构建整个 Kurento(与具有不同 UI 的 ubuntu 15.04 相同)。我首先克隆所有存储库:
mkdir kurento
cd kurento
git clone https://github.com/Kurento/kms-jsonrpc.git
git clone https://github.com/Kurento/kurento-module-creator.git
git clone https://github.com/Kurento/kms-filters.git
git clone https://github.com/Kurento/kms-core.git
git clone https://github.com/Kurento/kms-elements.git
git clone https://github.com/Kurento/adm-scripts.git
git clone https://github.com/Kurento/kms-cmake-utils.git
git clone https://github.com/Kurento/kms-crowddetector.git
git clone https://github.com/Kurento/kms-pointerdetector.git
git clone https://github.com/Kurento/kms-platedetector.git
git clone https://github.com/Kurento/kurento-media-server.git
git clone https://github.com/Kurento/kms-plugin-sample.git
git clone https://github.com/Kurento/kms-opencv-plugin-sample.git
然后安装 kms-cmake-utils:
cd kms-cmake-utils
mkdir build
cd build
cmake ..
make install
好的,它在 cmake 模块目录中安装了一堆文件。然后我尝试安装kms-core:
cd kms-core
mkdir build
cd build
cmake ..
但是 cmake 停止并出现以下错误
-- checking for module 'KurentoModuleCreator'
-- package 'KurentoModuleCreator' not found
CMake Error at /usr/share/cmake-3.0/Modules/GenericFind.cmake:93 (message):
Library KurentoModuleCreator not found
我尝试安装 kurento-module-creator:
cd kurento-module-creator
mvn install
它遵守并在 .m2 目录中安装一些文件。我对 maven 没有任何经验,不知道它是否正确完成。
但是它不能解决 kms-core 的错误。显然,cmake find_package 命令无法找到 FindKurentoModuleCreator.cmake。我在任何 Kurento 的存储库中都找不到该文件。有人可以告诉我我是否做错了吗?