visual studio 2010 - How to set VC++ Directories with CMake -



visual studio 2010 - How to set VC++ Directories with CMake -

vísual studio >=2010 provide configure scheme directories in vc++ directories section. there way tell cmake fill these settings instead using c/c++/additional include directories?

simply add together next line cmakelists.txt:

include_directories(-your-include-folder-)

similarly, add together next line if want set library directories:

link_directories(-your-library-folder-)

visual-studio-2010 cmake

Comments