which Qt project folder should i upload on github?
Solved
General and Desktop
-
Please help me I am new at Qt. I am confused because i have two folders.
(MyApplication is my software name)- build-MyApplication-Desktop_Qt_6_2_0_GCC_64bit-Debug
- MyApplication
Which one should i upload on github so others can also pull my project and run on there Qt creator?
-
@HeerokNewbie
only the source files with the .pro/cmake project file.
Never the build folder -
Hi,
In addition to @raven-worx, exclude the .pro.user and the corresponding cmake user file.
You can use a .got ignore files to ensure you don't add them accidentally.
-
@SGaist Thank you;