Michael Surette wrote:
> My own tests with 1.3 & VS 2010 Express & CMake were dissapointing and 
> while looking into it I found this old message from the CMake developers 
> to the MS VS 2010 team 
> https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=473709
> 
> It appears that they were running into dependency errors last July.

        Did you try disabling parallel builds?

        I've noticed with the newer VS compilers, parallel builds are on by 
default,
        so disabling it might help.

        I'm thinking a serial build might walk the dependencies correctly (the 
way it used to).

        It certainly does seem from your printout that it tried to build the
        executables before the libs were done building.

        One trick you might try that's easy: instead of building the whole FLTK 
solution,
        try telling it to just build fltk.lib, and see if that builds the lib 
OK.

        If so, you might be able to individually build the other fltk*.lib
        files as well until they're all built, then try building a few test 
programs.

        If you can do that, then you can link against the libs to get your own
        apps working.

        Someone else might be able to have better advice for 2010,
        as these suggs are merely workarounds..
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to