I am pretty new with C++, and I have a file I have to build both in Linux and Windows.
I was wondering if there was a way I could have different list of #include in the same file for windows and linux, but that somehow I tell it to do so without having to modify the file each time.
Like:
if_Windows
#include <Include1>
if_Linux
#include <Include2>
Is it possible to do something like this? How do you do it?