Instalando Dependências para o Building Unity 8

0

Se alguém puder, por favor, diga o que eu posso fazer para consertar isso que seria ótimo, porque eu tentei limpar a compilação apagando o arquivo de cache e muitas outras tentativas desesperadas. Eu procurei por todas as soluções possíveis que pude, mas não consegui descobrir isso. Eu também não tenho certeza exatamente o que isso significa. Eu segui isto: link

Quando comecei a instalar dependências, obtive ./build.sh –setup e obtive a seguinte saída:

-- Could NOT find Lcov (missing:  LCOV_EXECUTABLE GENHTML_EXECUTABLE) 
-- Could NOT find gcovr (missing:  GCOVR_EXECUTABLE) 
CMake Error at CMakeLists.txt:51 (find_package):
  By not providing "FindQt5Core.cmake" in CMAKE_MODULE_PATH this project has
  asked CMake to find a package configuration file provided by "Qt5Core", but
  CMake did not find one.

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

    Qt5CoreConfig.cmake
    qt5core-config.cmake

  Add the installation prefix of "Qt5Core" to CMAKE_PREFIX_PATH or set
  "Qt5Core_DIR" to a directory containing one of the above files.  If
  "Qt5Core" provides a separate development package or SDK, be sure it has
  been installed.


-- Configuring incomplete, errors occurred!
See also "/home/nathanzm/unity8/trunk/builddir/CMakeFiles/CMakeOutput.log".
    
por Nathan 19.05.2015 / 06:29

2 respostas

0

Você provavelmente cometeu o mesmo erro que eu e copiou o comando da página da wiki.

Digite o comando manualmente ./build.sh --setup . Isso funcionou para mim. Você terá que fazer uma compilação limpa depois.

./build.sh -c

    
por Benny Bach 15.07.2015 / 10:09
-1

O guia "Building Unity 8" está desatualizado.

Para começar, instale o Ubuntu 15.10 e execute estes comandos:

sudo apt-get install -y bzr unity8
sudo apt-get build-dep -y unity8

mkdir -p ~/unity8

bzr branch lp:unity8 ~/unity8/trunk

cd ~/unity8/trunk
./build.sh --setup
./build.sh
./run.sh
    
por ens 09.09.2015 / 12:13