I got my hands on a opensource project coded in c. It uses #ifdef's for crosscompiling. There are a lot o ifdef's all over the source code. I want just to modify it for one platform. I was thinking to run it through compiler's preprocessor(visual c++) but it will write the preprocessed result to a single file, which i don't need. Anybody knows a way to preprocess a project leaving it's structure intact(all files intact)? No grep, please.
edit:
I found a potential solution(it's amazing what you can find on the internet these days). It's boost.wave - a c++ preprocessor library which can do some interesting stuff. I don't know how it will turn out, but i will give it a try. Still, it's not the final answer, so if you have a solution then i will be glad to hear it.