开发者

Build system for a VISUAL STUDIO 2008' C++ project

开发者 https://www.devze.com 2022-12-16 20:46 出处:网络
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 开发者_运维问

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?


One option is to have everyone set an environment variable like LIBNAME_ROOT that points to the root of their installation of the library, and then add paths like $(LIBNAME_ROOT)\include and $(LIBNAME_ROOT)\lib to your project's compiler and linker settings, respectively.

0

精彩评论

暂无评论...
验证码 换一张
取 消