i have a project that worked fine on qtcreator (big surprise) and having trouble with moving to vs2010 with the qt add in.
im getting this:
1>------ Rebuild All started: Project: polly, Configuration: Debug x64 ------
1>Build started 11/10/2011 3:12:50 PM.
1>InitializeBuildStatus:
1> Touching ".build\debug\polly.unsuccessfulbuild".
1>CustomBuild:
1> Moc'ing headers\pollyComboBoxEditor.h...
1> moc: Too many input files specified
1> Usage: moc [options] <header-file>
1> -o<file> write output to file rather than stdout
1> -I<dir> add dir to the include path for header files
1> -E preprocess only; do not generate meta object code
1> -D<macro>[=<def>] define macro, with optional definition
1> -U<macro> undefine macro
1> -i do not generate an #include statement
1> -p<path> path prefix for included file
1> -f[<file>] force #include, optional file name
1> -nw do not display warnings
1> @<file> read additional options from file
1> -v display version of moc
1> Moc'ing headers\pollyLogDock.h...
1> moc: Too many input files specified
1> Usage: moc [options] <header-file>
1> -o<file> write output to file rather than stdout
1> -I<dir> add dir to the include path for header files
1> -E preprocess only; do not generate meta object code
1> -D<macro>[=<def>] define macro, with optional definition
1> -U<macro> undefine macro
1> -i do not generate an #include statement
1> -p<path> path prefix for included file
1> -f[<file>] force #include, optional file name
1> -nw do not display warnings
1> @<file> read additional options from file
1> -v display version of moc
...........

1> moc_pollyComboBoxEditor.cpp
1>c1xx : fatal error C1083: Cannot open source file: '.build\Debug\moc_pollyComboBoxEditor.cpp': No such file or directory
1> moc_pollyLogDock.cpp
1>c1xx : fatal error C1083: Cannot open source file: '.build\Debug\moc_pollyLogDock.cpp': No such file or directory
............
for all the files Q_OBJECT related, so something is obviously wrong with the mocs (-> they dont exist)
am i suppose to run qmake externally or is it the qtaddin's job?

i have a feeling " moc: Too many input files specified" is related..