views:

150

answers:

0

I have a .net project with both C and Fortran sources and I want to produce one static lib. I'm using VS 2008 and Intel VF 10.1. They have to be two separate projects in visual studio so each one makes a separate static lib. How do I combine them into one resulting static lib?

EDIT You guys are too slow. Here's what I figured out. Set a dependency so you can control the order of build of the libs In the last lib, use the lib command in the post build event to: lib /out:combined.lib cfiles.lib ffiles.lib