This may seem like a silly question - but if you have one solution with multiple projects in VS2013 - does anyone know how to get the source code from another project linked in..
i.e. I have a project called Toolkit and a project called Engine... From the toolkit project I want to use all the code in the Engine project without having to make a library from the engine code...
I added the directory with the engine header files to the toolkit project's include directories, added the directory with the source code to the toolkit project's source and executable directories.. Intellisense works and everything compiles (and I see the output saying that engineblabla.cpp compiled) but I am getting linking errors anytime I try to use any of the engine's functions or classes.. I know that it must be compiling to object code that the project doesn't know how to link to but I can't figure out how to set it up so it does.
Any help is appreciated, thanks