Uploading project to GitHub #27
|
I have uploaded my project to GitHub like you said in the first lecture so we can work on the project together as a team, but it seems like my friends are having troubles when cloning my repository like including the libraries and running the code on their laptops even though I have added the libraries to the repository and included them correctly in my project. |
Answered by
MuhammadSulaiman001
Dec 16, 2023
Replies: 1 comment 3 replies
|
Hi @Rufida123, You might be using full paths for include/lib files.. there is not enough information in your question to give a specific answer.. either provide me with a link to your repo, or at least paste the content of .vcxproj file(s) here in this discussion. |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As I've mentioned, you are using full paths for includes and libs, in your .vcxproj file, replace every
C:\Users\rufida\Desktop\OpenGL_repo\OpenGL Codeoccurence, with.\, for examplereplace
with
this way, the path is relative to the .vcxproj file, therefore, your teammates' Visual Studio can find these files and consume them.
Also, I've noticed that you've mentioned another
glad.cfile that is out of your repo!You should fix that as well, to corrent the path,
replace
w…