mayank1495

mscrer1

Mar 9th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 38.81 KB | None | 0 0
  1. mayank@Mayank:~/OpenSource/MuseScore$ git remote -v
  2. origin git@github.com:mayank1495/MuseScore.git (fetch)
  3. origin git@github.com:mayank1495/MuseScore.git (push)
  4. mayank@Mayank:~/OpenSource/MuseScore$ git remote add upstream git@github.com:musescore/MuseScore.git
  5. mayank@Mayank:~/OpenSource/MuseScore$ git remote -v
  6. origin git@github.com:mayank1495/MuseScore.git (fetch)
  7. origin git@github.com:mayank1495/MuseScore.git (push)
  8. upstream git@github.com:musescore/MuseScore.git (fetch)
  9. upstream git@github.com:musescore/MuseScore.git (push)
  10. mayank@Mayank:~/OpenSource/MuseScore$ git status
  11. On branch master
  12. Your branch is up-to-date with 'origin/master'.
  13. nothing to commit, working tree clean
  14. mayank@Mayank:~/OpenSource/MuseScore$ git fetch upstream
  15. remote: Counting objects: 37, done.
  16. remote: Compressing objects: 100% (37/37), done.
  17. remote: Total 37 (delta 4), reused 0 (delta 0), pack-reused 0
  18. Unpacking objects: 100% (37/37), done.
  19. From github.com:musescore/MuseScore
  20. * [new branch] 2.0 -> upstream/2.0
  21. * [new branch] 2.0.2 -> upstream/2.0.2
  22. * [new branch] 2.0.3 -> upstream/2.0.3
  23. * [new branch] 2.0.3-1 -> upstream/2.0.3-1
  24. * [new branch] 2.0.3.1 -> upstream/2.0.3.1
  25. * [new branch] 2.0.4 -> upstream/2.0.4
  26. * [new branch] 2.0beta1 -> upstream/2.0beta1
  27. * [new branch] 2.1 -> upstream/2.1
  28. * [new branch] master -> upstream/master
  29. mayank@Mayank:~/OpenSource/MuseScore$ git fetch upstream
  30. mayank@Mayank:~/OpenSource/MuseScore$ git branch
  31. * master
  32. mayank@Mayank:~/OpenSource/MuseScore$ make revision
  33. mayank@Mayank:~/OpenSource/MuseScore$ make
  34. if test ! -d build.release; then mkdir build.release; fi; \
  35. cd build.release; \
  36. export PATH=/home/mayank/.local/bin:/home/mayank/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin; \
  37. cmake -DCMAKE_BUILD_TYPE=RELEASE \
  38. -DCMAKE_TOOLCHAIN_FILE="" \
  39. -DCMAKE_INSTALL_PREFIX=""/usr/local"" \
  40. -DMSCORE_INSTALL_SUFFIX="""" \
  41. -DMUSESCORE_LABEL="""" \
  42. -DBUILD_LAME=""ON"" \
  43. -DCMAKE_SKIP_RPATH=""FALSE"" ..; \
  44. make lrelease; \
  45. make -j 4; \
  46.  
  47. -- The C compiler identification is GNU 6.2.0
  48. -- The CXX compiler identification is GNU 6.2.0
  49. -- Check for working C compiler: /usr/bin/cc
  50. -- Check for working C compiler: /usr/bin/cc -- works
  51. -- Detecting C compiler ABI info
  52. -- Detecting C compiler ABI info - done
  53. -- Detecting C compile features
  54. -- Detecting C compile features - done
  55. -- Check for working CXX compiler: /usr/bin/c++
  56. -- Check for working CXX compiler: /usr/bin/c++ -- works
  57. -- Detecting CXX compiler ABI info
  58. -- Detecting CXX compiler ABI info - done
  59. -- Detecting CXX compile features
  60. -- Detecting CXX compile features - done
  61. CMake Warning at build/FindQt5.cmake:30 (find_package):
  62. By not providing "FindQt5Core.cmake" in CMAKE_MODULE_PATH this project has
  63. asked CMake to find a package configuration file provided by "Qt5Core", but
  64. CMake did not find one.
  65.  
  66. Could not find a package configuration file provided by "Qt5Core" with any
  67. of the following names:
  68.  
  69. Qt5CoreConfig.cmake
  70. qt5core-config.cmake
  71.  
  72. Add the installation prefix of "Qt5Core" to CMAKE_PREFIX_PATH or set
  73. "Qt5Core_DIR" to a directory containing one of the above files. If
  74. "Qt5Core" provides a separate development package or SDK, be sure it has
  75. been installed.
  76. Call Stack (most recent call first):
  77. CMakeLists.txt:54 (include)
  78.  
  79.  
  80. CMake Warning at build/FindQt5.cmake:30 (find_package):
  81. By not providing "FindQt5Gui.cmake" in CMAKE_MODULE_PATH this project has
  82. asked CMake to find a package configuration file provided by "Qt5Gui", but
  83. CMake did not find one.
  84.  
  85. Could not find a package configuration file provided by "Qt5Gui" with any
  86. of the following names:
  87.  
  88. Qt5GuiConfig.cmake
  89. qt5gui-config.cmake
  90.  
  91. Add the installation prefix of "Qt5Gui" to CMAKE_PREFIX_PATH or set
  92. "Qt5Gui_DIR" to a directory containing one of the above files. If "Qt5Gui"
  93. provides a separate development package or SDK, be sure it has been
  94. installed.
  95. Call Stack (most recent call first):
  96. CMakeLists.txt:54 (include)
  97.  
  98.  
  99. CMake Warning at build/FindQt5.cmake:30 (find_package):
  100. By not providing "FindQt5Designer.cmake" in CMAKE_MODULE_PATH this project
  101. has asked CMake to find a package configuration file provided by
  102. "Qt5Designer", but CMake did not find one.
  103.  
  104. Could not find a package configuration file provided by "Qt5Designer" with
  105. any of the following names:
  106.  
  107. Qt5DesignerConfig.cmake
  108. qt5designer-config.cmake
  109.  
  110. Add the installation prefix of "Qt5Designer" to CMAKE_PREFIX_PATH or set
  111. "Qt5Designer_DIR" to a directory containing one of the above files. If
  112. "Qt5Designer" provides a separate development package or SDK, be sure it
  113. has been installed.
  114. Call Stack (most recent call first):
  115. CMakeLists.txt:54 (include)
  116.  
  117.  
  118. CMake Warning at build/FindQt5.cmake:30 (find_package):
  119. By not providing "FindQt5Network.cmake" in CMAKE_MODULE_PATH this project
  120. has asked CMake to find a package configuration file provided by
  121. "Qt5Network", but CMake did not find one.
  122.  
  123. Could not find a package configuration file provided by "Qt5Network" with
  124. any of the following names:
  125.  
  126. Qt5NetworkConfig.cmake
  127. qt5network-config.cmake
  128.  
  129. Add the installation prefix of "Qt5Network" to CMAKE_PREFIX_PATH or set
  130. "Qt5Network_DIR" to a directory containing one of the above files. If
  131. "Qt5Network" provides a separate development package or SDK, be sure it has
  132. been installed.
  133. Call Stack (most recent call first):
  134. CMakeLists.txt:54 (include)
  135.  
  136.  
  137. CMake Warning at build/FindQt5.cmake:30 (find_package):
  138. By not providing "FindQt5Test.cmake" in CMAKE_MODULE_PATH this project has
  139. asked CMake to find a package configuration file provided by "Qt5Test", but
  140. CMake did not find one.
  141.  
  142. Could not find a package configuration file provided by "Qt5Test" with any
  143. of the following names:
  144.  
  145. Qt5TestConfig.cmake
  146. qt5test-config.cmake
  147.  
  148. Add the installation prefix of "Qt5Test" to CMAKE_PREFIX_PATH or set
  149. "Qt5Test_DIR" to a directory containing one of the above files. If
  150. "Qt5Test" provides a separate development package or SDK, be sure it has
  151. been installed.
  152. Call Stack (most recent call first):
  153. CMakeLists.txt:54 (include)
  154.  
  155.  
  156. CMake Warning at build/FindQt5.cmake:30 (find_package):
  157. By not providing "FindQt5Qml.cmake" in CMAKE_MODULE_PATH this project has
  158. asked CMake to find a package configuration file provided by "Qt5Qml", but
  159. CMake did not find one.
  160.  
  161. Could not find a package configuration file provided by "Qt5Qml" with any
  162. of the following names:
  163.  
  164. Qt5QmlConfig.cmake
  165. qt5qml-config.cmake
  166.  
  167. Add the installation prefix of "Qt5Qml" to CMAKE_PREFIX_PATH or set
  168. "Qt5Qml_DIR" to a directory containing one of the above files. If "Qt5Qml"
  169. provides a separate development package or SDK, be sure it has been
  170. installed.
  171. Call Stack (most recent call first):
  172. CMakeLists.txt:54 (include)
  173.  
  174.  
  175. CMake Warning at build/FindQt5.cmake:30 (find_package):
  176. By not providing "FindQt5Quick.cmake" in CMAKE_MODULE_PATH this project has
  177. asked CMake to find a package configuration file provided by "Qt5Quick",
  178. but CMake did not find one.
  179.  
  180. Could not find a package configuration file provided by "Qt5Quick" with any
  181. of the following names:
  182.  
  183. Qt5QuickConfig.cmake
  184. qt5quick-config.cmake
  185.  
  186. Add the installation prefix of "Qt5Quick" to CMAKE_PREFIX_PATH or set
  187. "Qt5Quick_DIR" to a directory containing one of the above files. If
  188. "Qt5Quick" provides a separate development package or SDK, be sure it has
  189. been installed.
  190. Call Stack (most recent call first):
  191. CMakeLists.txt:54 (include)
  192.  
  193.  
  194. CMake Warning at build/FindQt5.cmake:30 (find_package):
  195. By not providing "FindQt5QuickWidgets.cmake" in CMAKE_MODULE_PATH this
  196. project has asked CMake to find a package configuration file provided by
  197. "Qt5QuickWidgets", but CMake did not find one.
  198.  
  199. Could not find a package configuration file provided by "Qt5QuickWidgets"
  200. with any of the following names:
  201.  
  202. Qt5QuickWidgetsConfig.cmake
  203. qt5quickwidgets-config.cmake
  204.  
  205. Add the installation prefix of "Qt5QuickWidgets" to CMAKE_PREFIX_PATH or
  206. set "Qt5QuickWidgets_DIR" to a directory containing one of the above files.
  207. If "Qt5QuickWidgets" provides a separate development package or SDK, be
  208. sure it has been installed.
  209. Call Stack (most recent call first):
  210. CMakeLists.txt:54 (include)
  211.  
  212.  
  213. CMake Warning at build/FindQt5.cmake:30 (find_package):
  214. By not providing "FindQt5Xml.cmake" in CMAKE_MODULE_PATH this project has
  215. asked CMake to find a package configuration file provided by "Qt5Xml", but
  216. CMake did not find one.
  217.  
  218. Could not find a package configuration file provided by "Qt5Xml" with any
  219. of the following names:
  220.  
  221. Qt5XmlConfig.cmake
  222. qt5xml-config.cmake
  223.  
  224. Add the installation prefix of "Qt5Xml" to CMAKE_PREFIX_PATH or set
  225. "Qt5Xml_DIR" to a directory containing one of the above files. If "Qt5Xml"
  226. provides a separate development package or SDK, be sure it has been
  227. installed.
  228. Call Stack (most recent call first):
  229. CMakeLists.txt:54 (include)
  230.  
  231.  
  232. CMake Warning at build/FindQt5.cmake:30 (find_package):
  233. By not providing "FindQt5XmlPatterns.cmake" in CMAKE_MODULE_PATH this
  234. project has asked CMake to find a package configuration file provided by
  235. "Qt5XmlPatterns", but CMake did not find one.
  236.  
  237. Could not find a package configuration file provided by "Qt5XmlPatterns"
  238. with any of the following names:
  239.  
  240. Qt5XmlPatternsConfig.cmake
  241. qt5xmlpatterns-config.cmake
  242.  
  243. Add the installation prefix of "Qt5XmlPatterns" to CMAKE_PREFIX_PATH or set
  244. "Qt5XmlPatterns_DIR" to a directory containing one of the above files. If
  245. "Qt5XmlPatterns" provides a separate development package or SDK, be sure it
  246. has been installed.
  247. Call Stack (most recent call first):
  248. CMakeLists.txt:54 (include)
  249.  
  250.  
  251. CMake Warning at build/FindQt5.cmake:30 (find_package):
  252. By not providing "FindQt5Svg.cmake" in CMAKE_MODULE_PATH this project has
  253. asked CMake to find a package configuration file provided by "Qt5Svg", but
  254. CMake did not find one.
  255.  
  256. Could not find a package configuration file provided by "Qt5Svg" with any
  257. of the following names:
  258.  
  259. Qt5SvgConfig.cmake
  260. qt5svg-config.cmake
  261.  
  262. Add the installation prefix of "Qt5Svg" to CMAKE_PREFIX_PATH or set
  263. "Qt5Svg_DIR" to a directory containing one of the above files. If "Qt5Svg"
  264. provides a separate development package or SDK, be sure it has been
  265. installed.
  266. Call Stack (most recent call first):
  267. CMakeLists.txt:54 (include)
  268.  
  269.  
  270. CMake Warning at build/FindQt5.cmake:30 (find_package):
  271. By not providing "FindQt5Sql.cmake" in CMAKE_MODULE_PATH this project has
  272. asked CMake to find a package configuration file provided by "Qt5Sql", but
  273. CMake did not find one.
  274.  
  275. Could not find a package configuration file provided by "Qt5Sql" with any
  276. of the following names:
  277.  
  278. Qt5SqlConfig.cmake
  279. qt5sql-config.cmake
  280.  
  281. Add the installation prefix of "Qt5Sql" to CMAKE_PREFIX_PATH or set
  282. "Qt5Sql_DIR" to a directory containing one of the above files. If "Qt5Sql"
  283. provides a separate development package or SDK, be sure it has been
  284. installed.
  285. Call Stack (most recent call first):
  286. CMakeLists.txt:54 (include)
  287.  
  288.  
  289. CMake Warning at build/FindQt5.cmake:30 (find_package):
  290. By not providing "FindQt5Widgets.cmake" in CMAKE_MODULE_PATH this project
  291. has asked CMake to find a package configuration file provided by
  292. "Qt5Widgets", but CMake did not find one.
  293.  
  294. Could not find a package configuration file provided by "Qt5Widgets" with
  295. any of the following names:
  296.  
  297. Qt5WidgetsConfig.cmake
  298. qt5widgets-config.cmake
  299.  
  300. Add the installation prefix of "Qt5Widgets" to CMAKE_PREFIX_PATH or set
  301. "Qt5Widgets_DIR" to a directory containing one of the above files. If
  302. "Qt5Widgets" provides a separate development package or SDK, be sure it has
  303. been installed.
  304. Call Stack (most recent call first):
  305. CMakeLists.txt:54 (include)
  306.  
  307.  
  308. CMake Warning at build/FindQt5.cmake:30 (find_package):
  309. By not providing "FindQt5PrintSupport.cmake" in CMAKE_MODULE_PATH this
  310. project has asked CMake to find a package configuration file provided by
  311. "Qt5PrintSupport", but CMake did not find one.
  312.  
  313. Could not find a package configuration file provided by "Qt5PrintSupport"
  314. with any of the following names:
  315.  
  316. Qt5PrintSupportConfig.cmake
  317. qt5printsupport-config.cmake
  318.  
  319. Add the installation prefix of "Qt5PrintSupport" to CMAKE_PREFIX_PATH or
  320. set "Qt5PrintSupport_DIR" to a directory containing one of the above files.
  321. If "Qt5PrintSupport" provides a separate development package or SDK, be
  322. sure it has been installed.
  323. Call Stack (most recent call first):
  324. CMakeLists.txt:54 (include)
  325.  
  326.  
  327. CMake Warning at build/FindQt5.cmake:30 (find_package):
  328. By not providing "FindQt5Concurrent.cmake" in CMAKE_MODULE_PATH this
  329. project has asked CMake to find a package configuration file provided by
  330. "Qt5Concurrent", but CMake did not find one.
  331.  
  332. Could not find a package configuration file provided by "Qt5Concurrent"
  333. with any of the following names:
  334.  
  335. Qt5ConcurrentConfig.cmake
  336. qt5concurrent-config.cmake
  337.  
  338. Add the installation prefix of "Qt5Concurrent" to CMAKE_PREFIX_PATH or set
  339. "Qt5Concurrent_DIR" to a directory containing one of the above files. If
  340. "Qt5Concurrent" provides a separate development package or SDK, be sure it
  341. has been installed.
  342. Call Stack (most recent call first):
  343. CMakeLists.txt:54 (include)
  344.  
  345.  
  346. CMake Warning at build/FindQt5.cmake:30 (find_package):
  347. By not providing "FindQt5UiTools.cmake" in CMAKE_MODULE_PATH this project
  348. has asked CMake to find a package configuration file provided by
  349. "Qt5UiTools", but CMake did not find one.
  350.  
  351. Could not find a package configuration file provided by "Qt5UiTools" with
  352. any of the following names:
  353.  
  354. Qt5UiToolsConfig.cmake
  355. qt5uitools-config.cmake
  356.  
  357. Add the installation prefix of "Qt5UiTools" to CMAKE_PREFIX_PATH or set
  358. "Qt5UiTools_DIR" to a directory containing one of the above files. If
  359. "Qt5UiTools" provides a separate development package or SDK, be sure it has
  360. been installed.
  361. Call Stack (most recent call first):
  362. CMakeLists.txt:54 (include)
  363.  
  364.  
  365. CMake Warning at build/FindQt5.cmake:30 (find_package):
  366. By not providing "FindQt5OpenGL.cmake" in CMAKE_MODULE_PATH this project
  367. has asked CMake to find a package configuration file provided by
  368. "Qt5OpenGL", but CMake did not find one.
  369.  
  370. Could not find a package configuration file provided by "Qt5OpenGL" with
  371. any of the following names:
  372.  
  373. Qt5OpenGLConfig.cmake
  374. qt5opengl-config.cmake
  375.  
  376. Add the installation prefix of "Qt5OpenGL" to CMAKE_PREFIX_PATH or set
  377. "Qt5OpenGL_DIR" to a directory containing one of the above files. If
  378. "Qt5OpenGL" provides a separate development package or SDK, be sure it has
  379. been installed.
  380. Call Stack (most recent call first):
  381. CMakeLists.txt:54 (include)
  382.  
  383.  
  384. CMake Warning at build/FindQt5.cmake:30 (find_package):
  385. By not providing "FindQt5LinguistTools.cmake" in CMAKE_MODULE_PATH this
  386. project has asked CMake to find a package configuration file provided by
  387. "Qt5LinguistTools", but CMake did not find one.
  388.  
  389. Could not find a package configuration file provided by "Qt5LinguistTools"
  390. with any of the following names:
  391.  
  392. Qt5LinguistToolsConfig.cmake
  393. qt5linguisttools-config.cmake
  394.  
  395. Add the installation prefix of "Qt5LinguistTools" to CMAKE_PREFIX_PATH or
  396. set "Qt5LinguistTools_DIR" to a directory containing one of the above
  397. files. If "Qt5LinguistTools" provides a separate development package or
  398. SDK, be sure it has been installed.
  399. Call Stack (most recent call first):
  400. CMakeLists.txt:54 (include)
  401.  
  402.  
  403. CMake Warning at build/FindQt5.cmake:30 (find_package):
  404. By not providing "FindQt5Help.cmake" in CMAKE_MODULE_PATH this project has
  405. asked CMake to find a package configuration file provided by "Qt5Help", but
  406. CMake did not find one.
  407.  
  408. Could not find a package configuration file provided by "Qt5Help" with any
  409. of the following names:
  410.  
  411. Qt5HelpConfig.cmake
  412. qt5help-config.cmake
  413.  
  414. Add the installation prefix of "Qt5Help" to CMAKE_PREFIX_PATH or set
  415. "Qt5Help_DIR" to a directory containing one of the above files. If
  416. "Qt5Help" provides a separate development package or SDK, be sure it has
  417. been installed.
  418. Call Stack (most recent call first):
  419. CMakeLists.txt:54 (include)
  420.  
  421.  
  422. CMake Warning at build/FindQt5.cmake:30 (find_package):
  423. By not providing "FindQt5WebEngine.cmake" in CMAKE_MODULE_PATH this project
  424. has asked CMake to find a package configuration file provided by
  425. "Qt5WebEngine", but CMake did not find one.
  426.  
  427. Could not find a package configuration file provided by "Qt5WebEngine" with
  428. any of the following names:
  429.  
  430. Qt5WebEngineConfig.cmake
  431. qt5webengine-config.cmake
  432.  
  433. Add the installation prefix of "Qt5WebEngine" to CMAKE_PREFIX_PATH or set
  434. "Qt5WebEngine_DIR" to a directory containing one of the above files. If
  435. "Qt5WebEngine" provides a separate development package or SDK, be sure it
  436. has been installed.
  437. Call Stack (most recent call first):
  438. CMakeLists.txt:54 (include)
  439.  
  440.  
  441. CMake Warning at build/FindQt5.cmake:30 (find_package):
  442. By not providing "FindQt5WebEngineCore.cmake" in CMAKE_MODULE_PATH this
  443. project has asked CMake to find a package configuration file provided by
  444. "Qt5WebEngineCore", but CMake did not find one.
  445.  
  446. Could not find a package configuration file provided by "Qt5WebEngineCore"
  447. with any of the following names:
  448.  
  449. Qt5WebEngineCoreConfig.cmake
  450. qt5webenginecore-config.cmake
  451.  
  452. Add the installation prefix of "Qt5WebEngineCore" to CMAKE_PREFIX_PATH or
  453. set "Qt5WebEngineCore_DIR" to a directory containing one of the above
  454. files. If "Qt5WebEngineCore" provides a separate development package or
  455. SDK, be sure it has been installed.
  456. Call Stack (most recent call first):
  457. CMakeLists.txt:54 (include)
  458.  
  459.  
  460. CMake Warning at build/FindQt5.cmake:30 (find_package):
  461. By not providing "FindQt5WebEngineWidgets.cmake" in CMAKE_MODULE_PATH this
  462. project has asked CMake to find a package configuration file provided by
  463. "Qt5WebEngineWidgets", but CMake did not find one.
  464.  
  465. Could not find a package configuration file provided by
  466. "Qt5WebEngineWidgets" with any of the following names:
  467.  
  468. Qt5WebEngineWidgetsConfig.cmake
  469. qt5webenginewidgets-config.cmake
  470.  
  471. Add the installation prefix of "Qt5WebEngineWidgets" to CMAKE_PREFIX_PATH
  472. or set "Qt5WebEngineWidgets_DIR" to a directory containing one of the above
  473. files. If "Qt5WebEngineWidgets" provides a separate development package or
  474. SDK, be sure it has been installed.
  475. Call Stack (most recent call first):
  476. CMakeLists.txt:54 (include)
  477.  
  478.  
  479. -- Found PkgConfig: /usr/bin/pkg-config (found version "0.28")
  480. -- Checking for module 'libpulse'
  481. -- Found libpulse, version 9.0
  482. -- Found pulseaudio. LIB /usr/lib/x86_64-linux-gnu/libpulse.so, INCLUDE , LIBDIR , LDFLAGS , CFLAGS
  483. CMake Error at CMakeLists.txt:228 (message):
  484. Error: ALSA support requested (BUILD_ALSA=ON), but ALSA >= 1.0.0 was not
  485. found.
  486.  
  487.  
  488. PulseAudio found. PulseAudio support enabled.
  489. LAME not found.
  490. -- JACK (Jack Audio Connection Kit) >= 0.98.0 not found
  491. CMake Error at CMakeLists.txt:322 (MESSAGE):
  492. Error: JACK support requested (BUILD_JACK=ON), but JACK was not found
  493.  
  494.  
  495. CMake Error at CMakeLists.txt:343 (message):
  496. Error: PortAudio support requested (BUILD_PORTAUDIO=ON), but portaudio-2.0
  497. version 19 was not found (package portaudio19-dev)
  498.  
  499.  
  500. -- PortMidi support disabled
  501. -- Found 'gzip'. Man pages will be compressed.
  502. -- Found 'ln'. Symlink aliases will be created for MuseScore executable and the man pages.
  503. -- Precompiled header generation
  504. CMake Error at mtest/CMakeLists.txt:27 (QT5_ADD_RESOURCES):
  505. Unknown CMake command "QT5_ADD_RESOURCES".
  506.  
  507.  
  508. -- Configuring incomplete, errors occurred!
  509. See also "/home/mayank/OpenSource/MuseScore/build.release/CMakeFiles/CMakeOutput.log".
  510. make[1]: Entering directory '/home/mayank/OpenSource/MuseScore/build.release'
  511. make[1]: *** No rule to make target 'lrelease'. Stop.
  512. make[1]: Leaving directory '/home/mayank/OpenSource/MuseScore/build.release'
  513. make[1]: Entering directory '/home/mayank/OpenSource/MuseScore/build.release'
  514. make[1]: *** No targets specified and no makefile found. Stop.
  515. make[1]: Leaving directory '/home/mayank/OpenSource/MuseScore/build.release'
  516. Makefile:42: recipe for target 'release' failed
  517. make: *** [release] Error 2
  518. mayank@Mayank:~/OpenSource/MuseScore$ sudo make install
  519. [sudo] password for mayank:
  520. if test ! -d build.release; then mkdir build.release; fi; \
  521. cd build.release; \
  522. export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin; \
  523. cmake -DCMAKE_BUILD_TYPE=RELEASE \
  524. -DCMAKE_TOOLCHAIN_FILE="" \
  525. -DCMAKE_INSTALL_PREFIX=""/usr/local"" \
  526. -DMSCORE_INSTALL_SUFFIX="""" \
  527. -DMUSESCORE_LABEL="""" \
  528. -DBUILD_LAME=""ON"" \
  529. -DCMAKE_SKIP_RPATH=""FALSE"" ..; \
  530. make lrelease; \
  531. make -j 4; \
  532.  
  533. CMake Warning at build/FindQt5.cmake:30 (find_package):
  534. By not providing "FindQt5Core.cmake" in CMAKE_MODULE_PATH this project has
  535. asked CMake to find a package configuration file provided by "Qt5Core", but
  536. CMake did not find one.
  537.  
  538. Could not find a package configuration file provided by "Qt5Core" with any
  539. of the following names:
  540.  
  541. Qt5CoreConfig.cmake
  542. qt5core-config.cmake
  543.  
  544. Add the installation prefix of "Qt5Core" to CMAKE_PREFIX_PATH or set
  545. "Qt5Core_DIR" to a directory containing one of the above files. If
  546. "Qt5Core" provides a separate development package or SDK, be sure it has
  547. been installed.
  548. Call Stack (most recent call first):
  549. CMakeLists.txt:54 (include)
  550.  
  551.  
  552. CMake Warning at build/FindQt5.cmake:30 (find_package):
  553. By not providing "FindQt5Gui.cmake" in CMAKE_MODULE_PATH this project has
  554. asked CMake to find a package configuration file provided by "Qt5Gui", but
  555. CMake did not find one.
  556.  
  557. Could not find a package configuration file provided by "Qt5Gui" with any
  558. of the following names:
  559.  
  560. Qt5GuiConfig.cmake
  561. qt5gui-config.cmake
  562.  
  563. Add the installation prefix of "Qt5Gui" to CMAKE_PREFIX_PATH or set
  564. "Qt5Gui_DIR" to a directory containing one of the above files. If "Qt5Gui"
  565. provides a separate development package or SDK, be sure it has been
  566. installed.
  567. Call Stack (most recent call first):
  568. CMakeLists.txt:54 (include)
  569.  
  570.  
  571. CMake Warning at build/FindQt5.cmake:30 (find_package):
  572. By not providing "FindQt5Designer.cmake" in CMAKE_MODULE_PATH this project
  573. has asked CMake to find a package configuration file provided by
  574. "Qt5Designer", but CMake did not find one.
  575.  
  576. Could not find a package configuration file provided by "Qt5Designer" with
  577. any of the following names:
  578.  
  579. Qt5DesignerConfig.cmake
  580. qt5designer-config.cmake
  581.  
  582. Add the installation prefix of "Qt5Designer" to CMAKE_PREFIX_PATH or set
  583. "Qt5Designer_DIR" to a directory containing one of the above files. If
  584. "Qt5Designer" provides a separate development package or SDK, be sure it
  585. has been installed.
  586. Call Stack (most recent call first):
  587. CMakeLists.txt:54 (include)
  588.  
  589.  
  590. CMake Warning at build/FindQt5.cmake:30 (find_package):
  591. By not providing "FindQt5Network.cmake" in CMAKE_MODULE_PATH this project
  592. has asked CMake to find a package configuration file provided by
  593. "Qt5Network", but CMake did not find one.
  594.  
  595. Could not find a package configuration file provided by "Qt5Network" with
  596. any of the following names:
  597.  
  598. Qt5NetworkConfig.cmake
  599. qt5network-config.cmake
  600.  
  601. Add the installation prefix of "Qt5Network" to CMAKE_PREFIX_PATH or set
  602. "Qt5Network_DIR" to a directory containing one of the above files. If
  603. "Qt5Network" provides a separate development package or SDK, be sure it has
  604. been installed.
  605. Call Stack (most recent call first):
  606. CMakeLists.txt:54 (include)
  607.  
  608.  
  609. CMake Warning at build/FindQt5.cmake:30 (find_package):
  610. By not providing "FindQt5Test.cmake" in CMAKE_MODULE_PATH this project has
  611. asked CMake to find a package configuration file provided by "Qt5Test", but
  612. CMake did not find one.
  613.  
  614. Could not find a package configuration file provided by "Qt5Test" with any
  615. of the following names:
  616.  
  617. Qt5TestConfig.cmake
  618. qt5test-config.cmake
  619.  
  620. Add the installation prefix of "Qt5Test" to CMAKE_PREFIX_PATH or set
  621. "Qt5Test_DIR" to a directory containing one of the above files. If
  622. "Qt5Test" provides a separate development package or SDK, be sure it has
  623. been installed.
  624. Call Stack (most recent call first):
  625. CMakeLists.txt:54 (include)
  626.  
  627.  
  628. CMake Warning at build/FindQt5.cmake:30 (find_package):
  629. By not providing "FindQt5Qml.cmake" in CMAKE_MODULE_PATH this project has
  630. asked CMake to find a package configuration file provided by "Qt5Qml", but
  631. CMake did not find one.
  632.  
  633. Could not find a package configuration file provided by "Qt5Qml" with any
  634. of the following names:
  635.  
  636. Qt5QmlConfig.cmake
  637. qt5qml-config.cmake
  638.  
  639. Add the installation prefix of "Qt5Qml" to CMAKE_PREFIX_PATH or set
  640. "Qt5Qml_DIR" to a directory containing one of the above files. If "Qt5Qml"
  641. provides a separate development package or SDK, be sure it has been
  642. installed.
  643. Call Stack (most recent call first):
  644. CMakeLists.txt:54 (include)
  645.  
  646.  
  647. CMake Warning at build/FindQt5.cmake:30 (find_package):
  648. By not providing "FindQt5Quick.cmake" in CMAKE_MODULE_PATH this project has
  649. asked CMake to find a package configuration file provided by "Qt5Quick",
  650. but CMake did not find one.
  651.  
  652. Could not find a package configuration file provided by "Qt5Quick" with any
  653. of the following names:
  654.  
  655. Qt5QuickConfig.cmake
  656. qt5quick-config.cmake
  657.  
  658. Add the installation prefix of "Qt5Quick" to CMAKE_PREFIX_PATH or set
  659. "Qt5Quick_DIR" to a directory containing one of the above files. If
  660. "Qt5Quick" provides a separate development package or SDK, be sure it has
  661. been installed.
  662. Call Stack (most recent call first):
  663. CMakeLists.txt:54 (include)
  664.  
  665.  
  666. CMake Warning at build/FindQt5.cmake:30 (find_package):
  667. By not providing "FindQt5QuickWidgets.cmake" in CMAKE_MODULE_PATH this
  668. project has asked CMake to find a package configuration file provided by
  669. "Qt5QuickWidgets", but CMake did not find one.
  670.  
  671. Could not find a package configuration file provided by "Qt5QuickWidgets"
  672. with any of the following names:
  673.  
  674. Qt5QuickWidgetsConfig.cmake
  675. qt5quickwidgets-config.cmake
  676.  
  677. Add the installation prefix of "Qt5QuickWidgets" to CMAKE_PREFIX_PATH or
  678. set "Qt5QuickWidgets_DIR" to a directory containing one of the above files.
  679. If "Qt5QuickWidgets" provides a separate development package or SDK, be
  680. sure it has been installed.
  681. Call Stack (most recent call first):
  682. CMakeLists.txt:54 (include)
  683.  
  684.  
  685. CMake Warning at build/FindQt5.cmake:30 (find_package):
  686. By not providing "FindQt5Xml.cmake" in CMAKE_MODULE_PATH this project has
  687. asked CMake to find a package configuration file provided by "Qt5Xml", but
  688. CMake did not find one.
  689.  
  690. Could not find a package configuration file provided by "Qt5Xml" with any
  691. of the following names:
  692.  
  693. Qt5XmlConfig.cmake
  694. qt5xml-config.cmake
  695.  
  696. Add the installation prefix of "Qt5Xml" to CMAKE_PREFIX_PATH or set
  697. "Qt5Xml_DIR" to a directory containing one of the above files. If "Qt5Xml"
  698. provides a separate development package or SDK, be sure it has been
  699. installed.
  700. Call Stack (most recent call first):
  701. CMakeLists.txt:54 (include)
  702.  
  703.  
  704. CMake Warning at build/FindQt5.cmake:30 (find_package):
  705. By not providing "FindQt5XmlPatterns.cmake" in CMAKE_MODULE_PATH this
  706. project has asked CMake to find a package configuration file provided by
  707. "Qt5XmlPatterns", but CMake did not find one.
  708.  
  709. Could not find a package configuration file provided by "Qt5XmlPatterns"
  710. with any of the following names:
  711.  
  712. Qt5XmlPatternsConfig.cmake
  713. qt5xmlpatterns-config.cmake
  714.  
  715. Add the installation prefix of "Qt5XmlPatterns" to CMAKE_PREFIX_PATH or set
  716. "Qt5XmlPatterns_DIR" to a directory containing one of the above files. If
  717. "Qt5XmlPatterns" provides a separate development package or SDK, be sure it
  718. has been installed.
  719. Call Stack (most recent call first):
  720. CMakeLists.txt:54 (include)
  721.  
  722.  
  723. CMake Warning at build/FindQt5.cmake:30 (find_package):
  724. By not providing "FindQt5Svg.cmake" in CMAKE_MODULE_PATH this project has
  725. asked CMake to find a package configuration file provided by "Qt5Svg", but
  726. CMake did not find one.
  727.  
  728. Could not find a package configuration file provided by "Qt5Svg" with any
  729. of the following names:
  730.  
  731. Qt5SvgConfig.cmake
  732. qt5svg-config.cmake
  733.  
  734. Add the installation prefix of "Qt5Svg" to CMAKE_PREFIX_PATH or set
  735. "Qt5Svg_DIR" to a directory containing one of the above files. If "Qt5Svg"
  736. provides a separate development package or SDK, be sure it has been
  737. installed.
  738. Call Stack (most recent call first):
  739. CMakeLists.txt:54 (include)
  740.  
  741.  
  742. CMake Warning at build/FindQt5.cmake:30 (find_package):
  743. By not providing "FindQt5Sql.cmake" in CMAKE_MODULE_PATH this project has
  744. asked CMake to find a package configuration file provided by "Qt5Sql", but
  745. CMake did not find one.
  746.  
  747. Could not find a package configuration file provided by "Qt5Sql" with any
  748. of the following names:
  749.  
  750. Qt5SqlConfig.cmake
  751. qt5sql-config.cmake
  752.  
  753. Add the installation prefix of "Qt5Sql" to CMAKE_PREFIX_PATH or set
  754. "Qt5Sql_DIR" to a directory containing one of the above files. If "Qt5Sql"
  755. provides a separate development package or SDK, be sure it has been
  756. installed.
  757. Call Stack (most recent call first):
  758. CMakeLists.txt:54 (include)
  759.  
  760.  
  761. CMake Warning at build/FindQt5.cmake:30 (find_package):
  762. By not providing "FindQt5Widgets.cmake" in CMAKE_MODULE_PATH this project
  763. has asked CMake to find a package configuration file provided by
  764. "Qt5Widgets", but CMake did not find one.
  765.  
  766. Could not find a package configuration file provided by "Qt5Widgets" with
  767. any of the following names:
  768.  
  769. Qt5WidgetsConfig.cmake
  770. qt5widgets-config.cmake
  771.  
  772. Add the installation prefix of "Qt5Widgets" to CMAKE_PREFIX_PATH or set
  773. "Qt5Widgets_DIR" to a directory containing one of the above files. If
  774. "Qt5Widgets" provides a separate development package or SDK, be sure it has
  775. been installed.
  776. Call Stack (most recent call first):
  777. CMakeLists.txt:54 (include)
  778.  
  779.  
  780. CMake Warning at build/FindQt5.cmake:30 (find_package):
  781. By not providing "FindQt5PrintSupport.cmake" in CMAKE_MODULE_PATH this
  782. project has asked CMake to find a package configuration file provided by
  783. "Qt5PrintSupport", but CMake did not find one.
  784.  
  785. Could not find a package configuration file provided by "Qt5PrintSupport"
  786. with any of the following names:
  787.  
  788. Qt5PrintSupportConfig.cmake
  789. qt5printsupport-config.cmake
  790.  
  791. Add the installation prefix of "Qt5PrintSupport" to CMAKE_PREFIX_PATH or
  792. set "Qt5PrintSupport_DIR" to a directory containing one of the above files.
  793. If "Qt5PrintSupport" provides a separate development package or SDK, be
  794. sure it has been installed.
  795. Call Stack (most recent call first):
  796. CMakeLists.txt:54 (include)
  797.  
  798.  
  799. CMake Warning at build/FindQt5.cmake:30 (find_package):
  800. By not providing "FindQt5Concurrent.cmake" in CMAKE_MODULE_PATH this
  801. project has asked CMake to find a package configuration file provided by
  802. "Qt5Concurrent", but CMake did not find one.
  803.  
  804. Could not find a package configuration file provided by "Qt5Concurrent"
  805. with any of the following names:
  806.  
  807. Qt5ConcurrentConfig.cmake
  808. qt5concurrent-config.cmake
  809.  
  810. Add the installation prefix of "Qt5Concurrent" to CMAKE_PREFIX_PATH or set
  811. "Qt5Concurrent_DIR" to a directory containing one of the above files. If
  812. "Qt5Concurrent" provides a separate development package or SDK, be sure it
  813. has been installed.
  814. Call Stack (most recent call first):
  815. CMakeLists.txt:54 (include)
  816.  
  817.  
  818. CMake Warning at build/FindQt5.cmake:30 (find_package):
  819. By not providing "FindQt5UiTools.cmake" in CMAKE_MODULE_PATH this project
  820. has asked CMake to find a package configuration file provided by
  821. "Qt5UiTools", but CMake did not find one.
  822.  
  823. Could not find a package configuration file provided by "Qt5UiTools" with
  824. any of the following names:
  825.  
  826. Qt5UiToolsConfig.cmake
  827. qt5uitools-config.cmake
  828.  
  829. Add the installation prefix of "Qt5UiTools" to CMAKE_PREFIX_PATH or set
  830. "Qt5UiTools_DIR" to a directory containing one of the above files. If
  831. "Qt5UiTools" provides a separate development package or SDK, be sure it has
  832. been installed.
  833. Call Stack (most recent call first):
  834. CMakeLists.txt:54 (include)
  835.  
  836.  
  837. CMake Warning at build/FindQt5.cmake:30 (find_package):
  838. By not providing "FindQt5OpenGL.cmake" in CMAKE_MODULE_PATH this project
  839. has asked CMake to find a package configuration file provided by
  840. "Qt5OpenGL", but CMake did not find one.
  841.  
  842. Could not find a package configuration file provided by "Qt5OpenGL" with
  843. any of the following names:
  844.  
  845. Qt5OpenGLConfig.cmake
  846. qt5opengl-config.cmake
  847.  
  848. Add the installation prefix of "Qt5OpenGL" to CMAKE_PREFIX_PATH or set
  849. "Qt5OpenGL_DIR" to a directory containing one of the above files. If
  850. "Qt5OpenGL" provides a separate development package or SDK, be sure it has
  851. been installed.
  852. Call Stack (most recent call first):
  853. CMakeLists.txt:54 (include)
  854.  
  855.  
  856. CMake Warning at build/FindQt5.cmake:30 (find_package):
  857. By not providing "FindQt5LinguistTools.cmake" in CMAKE_MODULE_PATH this
  858. project has asked CMake to find a package configuration file provided by
  859. "Qt5LinguistTools", but CMake did not find one.
  860.  
  861. Could not find a package configuration file provided by "Qt5LinguistTools"
  862. with any of the following names:
  863.  
  864. Qt5LinguistToolsConfig.cmake
  865. qt5linguisttools-config.cmake
  866.  
  867. Add the installation prefix of "Qt5LinguistTools" to CMAKE_PREFIX_PATH or
  868. set "Qt5LinguistTools_DIR" to a directory containing one of the above
  869. files. If "Qt5LinguistTools" provides a separate development package or
  870. SDK, be sure it has been installed.
  871. Call Stack (most recent call first):
  872. CMakeLists.txt:54 (include)
  873.  
  874.  
  875. CMake Warning at build/FindQt5.cmake:30 (find_package):
  876. By not providing "FindQt5Help.cmake" in CMAKE_MODULE_PATH this project has
  877. asked CMake to find a package configuration file provided by "Qt5Help", but
  878. CMake did not find one.
  879.  
  880. Could not find a package configuration file provided by "Qt5Help" with any
  881. of the following names:
  882.  
  883. Qt5HelpConfig.cmake
  884. qt5help-config.cmake
  885.  
  886. Add the installation prefix of "Qt5Help" to CMAKE_PREFIX_PATH or set
  887. "Qt5Help_DIR" to a directory containing one of the above files. If
  888. "Qt5Help" provides a separate development package or SDK, be sure it has
  889. been installed.
  890. Call Stack (most recent call first):
  891. CMakeLists.txt:54 (include)
  892.  
  893.  
  894. CMake Warning at build/FindQt5.cmake:30 (find_package):
  895. By not providing "FindQt5WebEngine.cmake" in CMAKE_MODULE_PATH this project
  896. has asked CMake to find a package configuration file provided by
  897. "Qt5WebEngine", but CMake did not find one.
  898.  
  899. Could not find a package configuration file provided by "Qt5WebEngine" with
  900. any of the following names:
  901.  
  902. Qt5WebEngineConfig.cmake
  903. qt5webengine-config.cmake
  904.  
  905. Add the installation prefix of "Qt5WebEngine" to CMAKE_PREFIX_PATH or set
  906. "Qt5WebEngine_DIR" to a directory containing one of the above files. If
  907. "Qt5WebEngine" provides a separate development package or SDK, be sure it
  908. has been installed.
  909. Call Stack (most recent call first):
  910. CMakeLists.txt:54 (include)
  911.  
  912.  
  913. CMake Warning at build/FindQt5.cmake:30 (find_package):
  914. By not providing "FindQt5WebEngineCore.cmake" in CMAKE_MODULE_PATH this
  915. project has asked CMake to find a package configuration file provided by
  916. "Qt5WebEngineCore", but CMake did not find one.
  917.  
  918. Could not find a package configuration file provided by "Qt5WebEngineCore"
  919. with any of the following names:
  920.  
  921. Qt5WebEngineCoreConfig.cmake
  922. qt5webenginecore-config.cmake
  923.  
  924. Add the installation prefix of "Qt5WebEngineCore" to CMAKE_PREFIX_PATH or
  925. set "Qt5WebEngineCore_DIR" to a directory containing one of the above
  926. files. If "Qt5WebEngineCore" provides a separate development package or
  927. SDK, be sure it has been installed.
  928. Call Stack (most recent call first):
  929. CMakeLists.txt:54 (include)
  930.  
  931.  
  932. CMake Warning at build/FindQt5.cmake:30 (find_package):
  933. By not providing "FindQt5WebEngineWidgets.cmake" in CMAKE_MODULE_PATH this
  934. project has asked CMake to find a package configuration file provided by
  935. "Qt5WebEngineWidgets", but CMake did not find one.
  936.  
  937. Could not find a package configuration file provided by
  938. "Qt5WebEngineWidgets" with any of the following names:
  939.  
  940. Qt5WebEngineWidgetsConfig.cmake
  941. qt5webenginewidgets-config.cmake
  942.  
  943. Add the installation prefix of "Qt5WebEngineWidgets" to CMAKE_PREFIX_PATH
  944. or set "Qt5WebEngineWidgets_DIR" to a directory containing one of the above
  945. files. If "Qt5WebEngineWidgets" provides a separate development package or
  946. SDK, be sure it has been installed.
  947. Call Stack (most recent call first):
  948. CMakeLists.txt:54 (include)
  949.  
  950.  
  951. -- Found pulseaudio. LIB /usr/lib/x86_64-linux-gnu/libpulse.so, INCLUDE , LIBDIR , LDFLAGS , CFLAGS
  952. CMake Error at CMakeLists.txt:228 (message):
  953. Error: ALSA support requested (BUILD_ALSA=ON), but ALSA >= 1.0.0 was not
  954. found.
  955.  
  956.  
  957. PulseAudio found. PulseAudio support enabled.
  958. LAME not found.
  959. -- JACK (Jack Audio Connection Kit) >= 0.98.0 not found
  960. CMake Error at CMakeLists.txt:322 (MESSAGE):
  961. Error: JACK support requested (BUILD_JACK=ON), but JACK was not found
  962.  
  963.  
  964. CMake Error at CMakeLists.txt:343 (message):
  965. Error: PortAudio support requested (BUILD_PORTAUDIO=ON), but portaudio-2.0
  966. version 19 was not found (package portaudio19-dev)
  967.  
  968.  
  969. -- PortMidi support disabled
  970. -- Found 'gzip'. Man pages will be compressed.
  971. -- Found 'ln'. Symlink aliases will be created for MuseScore executable and the man pages.
  972. -- Precompiled header generation
  973. CMake Error at mtest/CMakeLists.txt:27 (QT5_ADD_RESOURCES):
  974. Unknown CMake command "QT5_ADD_RESOURCES".
  975.  
  976.  
  977. -- Configuring incomplete, errors occurred!
  978. See also "/home/mayank/OpenSource/MuseScore/build.release/CMakeFiles/CMakeOutput.log".
  979. make[1]: Entering directory '/home/mayank/OpenSource/MuseScore/build.release'
  980. make[1]: *** No rule to make target 'lrelease'. Stop.
  981. make[1]: Leaving directory '/home/mayank/OpenSource/MuseScore/build.release'
  982. make[1]: Entering directory '/home/mayank/OpenSource/MuseScore/build.release'
  983. make[1]: *** No targets specified and no makefile found. Stop.
  984. make[1]: Leaving directory '/home/mayank/OpenSource/MuseScore/build.release'
  985. Makefile:42: recipe for target 'release' failed
  986. make: *** [release] Error 2
  987. mayank@Mayank:~/OpenSource/MuseScore$
Add Comment
Please, Sign In to add comment