I am building cross platform project. It was started on Linux enviroment, and built using cmake. There is way to use cmake on windows too, but I think Visual Studio is would handle it easier.
So now I have created empty solution on separate folder(not to mix source files with VS). But problem is that I need to add every folder into visual studio by using absolute path. Which is bad when this solution will be used from another windows machine.
Main question: is there way to specify relative path to include directory? Something like $(solution_source_folder)..\source\some_component_folder Where solution_folder_path is path where solution really is and solution folder is on same level as source folder.