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 のどのリポジトリにもファイルが見つかりませんでした。私が間違っているかどうか誰か教えてもらえますか?