c++ - Libraries VS2015 -


good evening

i'm trying set development environment on newly boot-camped windows 10.

i know how link include/lib in vs. on mac external libraries , include files @ either: /use/local/ or /opt/local/

i'm wondering whether there easy way on windows, or there way force vs in particular dir?

cheers

vs has concept of property sheets predefined set of properties project. every c++ project includes default few property sheets , there's special property sheet called microsoft.cpp.[platform].user [platform] either win32 or x64. editing contents of file can set paths projects (or other arbitrary values such macros).

to edit these files either of following:

  1. make new cpp project in vs. go view->other windows->property manager. show new pane in current window , there can find property sheet , edit see fit. approach has benefit of being more user-friendly vs provides nice gui. here's 1 tutorial

  2. find files (they located in %localappdata%\microsoft\msbuild\v4.0), open them using favourite text editor , magic. files xml-based it's not awfully difficult.


Comments

Popular posts from this blog

ruby - Trying to change last to "x"s to 23 -

jquery - Clone last and append item to closest class -

c - Unrecognised emulation mode: elf_i386 on MinGW32 -