D
dotnetchic
Okay, it's been a while since I've managed large projects in vs c++.
So I've got a project structure question.
I have about 5 projects that I am bringing into MC++ VS2005 (from VS
6). I've got 2 of these projects converted, compiled, and running so
far. But all 5 of the projects share some of the code, in a way that
needs to be changed.
Right now, each project contains code files within its project
directory. So if I make a change to codefile1.cpp or codefile1.h that
is shared across all 5 projects, I have to make that change across ALL
FIVE PROJECTS. What I would like to do is move these out to a common
shared directory and have one solution that includes all the projects,
but I still want to use relative path names on my includes. (My
initial attempt at this forced me down a route to explicity label the
path that the include file was in, which is NOT what I want).
Obviously, I need a little direction.
So I've got a project structure question.
I have about 5 projects that I am bringing into MC++ VS2005 (from VS
6). I've got 2 of these projects converted, compiled, and running so
far. But all 5 of the projects share some of the code, in a way that
needs to be changed.
Right now, each project contains code files within its project
directory. So if I make a change to codefile1.cpp or codefile1.h that
is shared across all 5 projects, I have to make that change across ALL
FIVE PROJECTS. What I would like to do is move these out to a common
shared directory and have one solution that includes all the projects,
but I still want to use relative path names on my includes. (My
initial attempt at this forced me down a route to explicity label the
path that the include file was in, which is NOT what I want).
Obviously, I need a little direction.