c++ - Error: cannot open source file #include - in visual studio 2012 -
c++ - Error: cannot open source file #include<libcec/cec.h> in visual studio 2012 -
i trying utilize libcec
in visual studio 2012. done process of setting up. when utilize
# include<libcec/cec.h>
it gives error cannot open source file. should prepare it?
you need set path of library vc++ include directory:
otherwise, find exact path of header (cec.h
), , others, , set total path in #include
statement.
c++ visual-c++ include
Comments
Post a Comment