I recommend starting from a solution that has already been made for a WTL project and adapting it for your project. This site has a good number of articles about WTL so I am sure something useful can be found :
Code Project Search WTL[
^]. By adapting I mean remove all source files that project references and then add all of yours into it. I have done this for several years now. I can not remember the last I had the wizard create a new project for me. I copy, rename, and revise previous project files so I am used to this.
You seem to be shooting in the dark regarding pre-compiled headers. They took me a while to figure out but ended up being pretty easy. First you select the
Use option for all configurations of your project. Then you select the file that includes only your pre-compiled header file. With MFC it is usually called StdAfx.cpp but I usually call it PreCompiled.cpp. Once it is selected, right click on it select Properties for that file. In the property pages select
Create as the pre-compiled header option for that file. The idea is one source (.cpp) file
creates the .pch file for all the others to
use.