web-dev-qa-db-fra.com

Comment compiler vlc-qt sur Ubuntu 16.04

J'ai suivi les étapes suivantes.

1.Téléchargé le code source en tant que

git clone git://github.com/vlc-qt/vlc-qt.git
Cloning into 'vlc-qt'...
remote: Counting objects: 4785, done.
remote: Total 4785 (delta 0), reused 0 (delta 0), pack-reused 4785
Receiving objects: 100% (4785/4785), 3.14 MiB | 833.00 KiB/s, done.
Resolving deltas: 100% (3121/3121), done.
Checking connectivity... done.

2.Créer un répertoire de construction.

mkdir build

3.En train de construire un répertoire.

cd build

4.Utilisez make Command en tant que

ajeet@administrator-OptiPlex-3040:~/vlc-qt/build$ **cmake ..DCMAKE_BUILD_TYPE=Debug**
  -- Building VLC-Qt 1.2.0
  -- Git revision: 9b2f561
  -- The C compiler identification is GNU 5.4.0
  -- The CXX compiler identification is GNU 5.4.0
  -- Check for working C compiler: /usr/bin/cc
  -- Check for working C compiler: /usr/bin/cc -- works
  -- Detecting C compiler ABI info
  -- Detecting C compiler ABI info - done
  -- Detecting C compile features
  -- Detecting C compile features - done
  -- Check for working CXX compiler: /usr/bin/c++
  -- Check for working CXX compiler: /usr/bin/c++ -- works
  -- Detecting CXX compiler ABI info
  -- Detecting CXX compiler ABI info - done
  -- Detecting CXX compile features
  -- Detecting CXX compile features - done
  -- Build statically: OFF
  CMake Error at config/Dependencies.cmake:29 (FIND_PACKAGE):
  By not providing "FindQt5Quick.cmake" in CMAKE_MODULE_PATH this project has
  asked CMake to find a package configuration file provided by "Qt5Quick",
  but CMake did not find one.

  Could not find a package configuration file provided by "Qt5Quick"
  (requested version 5.2.0) with any of the following names:

    **Qt5QuickConfig.cmake
    qt5quick-config.cmake**

  Add the installation prefix of "Qt5Quick" to CMAKE_PREFIX_PATH or set
  "Qt5Quick_DIR" to a directory containing one of the above files.  If
  "Qt5Quick" provides a separate development package or SDK, be sure it has
  been installed.
  Call Stack (most recent call first):
  CMakeLists.txt:50 (INCLUDE)


  -- Configuring incomplete, errors occurred!
  See also "/home/ajeet/vlc-qt/build/CMakeFiles/CMakeOutput.log".

J'ai essayé de déboguer le problème et de trouver des solutions comme Sudo apt-get install qt*5-dev mais cela ne fonctionne pas pour moi.

Toute aide et suggestions seront appréciées Merci d'avance

1
Deepak

CMake vous indique qu'il vous manque le fichier Qt5QuickConfig.cmake, qui fait partie du package qtdeclarative5-dev (trouvé à l'aide de packages.ubuntu.com ).

La compilation vlc-qt nécessite quelques paquets supplémentaires pouvant être installés avec:

Sudo apt-get install qtdeclarative5-dev libvlccore-dev libvlc-dev
4
pim

Outre la construction à partir des sources, vlc-qt offre également des packages Ubuntu que vous pouvez installer facilement. Cependant, vous devrez ajouter ppa car il ne figurait pas dans le référentiel officiel (référentiel tiers).

_Sudo add-apt-repository ppa:ntadej/tano 
Sudo apt update
Sudo apt install libvlc-qt
_
0
Jim