Tuesday, May 7, 2024
 Popular · Latest · Hot · Upcoming
2
rated 0 times [  2] [ 0]  / answers: 1 / hits: 1211  / 2 Years ago, sun, july 17, 2022, 5:09:45

It might be just a basic thing for many, but I'm stuck at "Qt version control", and it's really annoying me. I'm on Ubuntu 12.04 LTS and my Qt version is 2.4.1.



Here's the message which is displayed:




No valid Qt versions found.
Please add a Qt version in Tools/Options or via the maintenance tool of the SDK.



snap01



I've installed bazaar (bzr) disabled all other version control plugins except bazaar but still can't get past the problem. Please guide me if I have to learn more about configuring with bazaar version control.
snap03



I've added the qmake path too.
snap02



I even tried disabling all the version control plugins but that too didn't go as I expected. I am (or maybe I should use was) thinking of learning to develop/code with Qt but haven't managed to get past creating a new project structure!



Please guide me through this.


More From » ubuntu-sdk

 Answers
5

Version Control System (VCS), Revision Control or Source Control are software systems used to track changes in files, usually used in software development.



How it works



Usually the files are hosted in a repository (a directory tree for each project). A developer A writes a software system and uses VCS to track the file changes. A developer B wants to add a new feature to the software system or fix a found bug. A common development process goes like this:




  • Developer B will want to get the sources in order to work on them

  • Developer B works on new features on his copy of the repository

  • Developer B commits his work locally

  • Developer B completes his job and commits the changes back to the remote (original) repository



Note this is one way of doing things, there can be various ways such as:




  • Working a one man project (solo) and keeping the repositories locally.

  • Working in a group project with a central remote repository

  • Various other flavors



For Bazaar you can check the documentation here and decide what works for you.



Do I Have Bazzar in my System?



You can check if Bazaar is installed in your system by issuing the following in terminal which bzr, if Bazaar is installed you will get: /usr/bin/bzr else you will have to install it with sudo apt-get install bzr



Potential Suspect



From the screenshots you provided it seems that you do not have QT development framework installed in your system (qmake is absent). You can get the Qt framework from the official site or through the Software Center (search for qt-sdk), it will yield the following:
enter image description here



or sudo apt-get install qt-sdk, additionally you can install the documentation.


[#25541] Monday, July 18, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
elopingapo

Total Points: 206
Total Questions: 110
Total Answers: 114

Location: Guam
Member since Tue, Nov 29, 2022
1 Year ago
;