Advertisement
Guest User

Untitled

a guest
Apr 9th, 2012
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. [david@localhost mscore-1.2]$ make release
  2. if test ! -d build; \
  3. then \
  4. mkdir build; \
  5. cd build; \
  6. cmake -DCMAKE_BUILD_TYPE=RELEASE \
  7. -DCMAKE_INSTALL_PREFIX=""/usr/local"" \
  8. ../mscore; \
  9. make lrelease; \
  10. make -j `grep -c processor /proc/cpuinfo`; \
  11. else \
  12. echo "build directory does already exist, please remove first with 'make clean'"; \
  13. fi;
  14. -- The C compiler identification is GNU
  15. -- The CXX compiler identification is GNU
  16. -- Check for working C compiler: /usr/bin/gcc
  17. -- Check for working C compiler: /usr/bin/gcc -- works
  18. -- Detecting C compiler ABI info
  19. -- Detecting C compiler ABI info - done
  20. -- Check for working CXX compiler: /usr/bin/c++
  21. -- Check for working CXX compiler: /usr/bin/c++ -- works
  22. -- Detecting CXX compiler ABI info
  23. -- Detecting CXX compiler ABI info - done
  24. -- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE)
  25. Doxygen not found
  26. -- Looking for Q_WS_X11
  27. -- Looking for Q_WS_X11 - found
  28. -- Looking for Q_WS_WIN
  29. -- Looking for Q_WS_WIN - not found.
  30. -- Looking for Q_WS_QWS
  31. -- Looking for Q_WS_QWS - not found.
  32. -- Looking for Q_WS_MAC
  33. -- Looking for Q_WS_MAC - not found.
  34. -- Found Qt4: /usr/bin/qmake-qt4 (found suitable version "4.8.0", required is "4.6")
  35. Qt lib found at /usr/lib64
  36. CMake Error at CMakeLists.txt:157 (message):
  37. Fatal error: ALSA >= 1.0.0 required
  38.  
  39.  
  40. CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
  41. Please set them or make sure they are set and tested correctly in the CMake files:
  42. QT_QTWEBKIT_INCLUDE_DIR (ADVANCED)
  43. used as include directory in directory /home/david/Downloads/mscore-1.2/mscore
  44.  
  45. -- Configuring incomplete, errors occurred!
  46. make[1]: Entering directory `/home/david/Downloads/mscore-1.2/build'
  47. make[1]: *** No rule to make target `lrelease'. Stop.
  48. make[1]: Leaving directory `/home/david/Downloads/mscore-1.2/build'
  49. make[1]: Entering directory `/home/david/Downloads/mscore-1.2/build'
  50. make[1]: *** No targets specified and no makefile found. Stop.
  51. make[1]: Leaving directory `/home/david/Downloads/mscore-1.2/build'
  52. make: *** [release] Error 2
  53. [david@localhost mscore-1.2]$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement