i’am developing a rigid body simulation (physics) in my workstation and i need to share this project with teachers from my university. The problem is the workstations of my teachers have different configurations about the path of some libraries. How i can externalize the paths on a VS2008 C++ project?
i’am developing a rigid body simulation (physics) in my workstation and i need to
Share
One option is to have everyone set an environment variable like
LIBNAME_ROOTthat points to the root of their installation of the library, and then add paths like$(LIBNAME_ROOT)\includeand$(LIBNAME_ROOT)\libto your project’s compiler and linker settings, respectively.