c++ - How add existing file to Different Visual Studio Project Programmatically -
i newbie. want create visual c++ project programmatically. have tried envdte objects working on instance of current solution want edit different project file of different solution not opened anywhere.
how can instance of different project edit it?
and using visual studio 2013 express. there limimation it? should use vspackage's?
thanks.
in general recommend considering build system cmake or scons. allows generate build scripts arbitrary platform (as such includes msvs solution files).
however, might edit project file script or program. project files plain xml files , it's easy add external files.
<itemgroup> <clcompile include="some_file.cpp" /> </itemgroup>
Comments
Post a Comment