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. |
Beta Was this translation helpful? Give feedback.
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. |
Beta Was this translation helpful? Give feedback.
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…