Best way to use JUCE without Introjucer

I was wondering what the best way to use JUCE without the introjucer.  At our company, we have a solution in VisualStudio called thirdparty.  That is where all of our thirdparty software resides.  We only have to occasionally build this solution.  When we do, each of the projects build, and in the post build event, we copy the necessary files out into a separate self contained directory named build.

We currently have juce 1.53 setup in our thirdparty solution.  When we build, we copy the following files and the juce related files in our build directory looks like this

build/bin/juce_debug.dll
build/bin/juce_debug.ilk
build/bin/juce_debug.pdb
build/include/juce.h
build/include/juce_Config.h
build/include/src/*                 <-- Looks like we copy every juce  .h file into here
build/lib/juce_debug.exp
build/lib/juce_debug.lib

 

So my question is if I want to do this same approach with the latest version of juce (2.1.8), is this feasable and what files would need to be copied?

Thanks
John Lawrie