Re: [CMake] Addressing an external MS project as target

2008-11-12 Thread Floca Ralf Omar
> Bill Hoffman wrote: > > > So, this might work: > > include_external_msproject(B /some/path) > > add_dependencies(A B) > > > I meant to say this: > > add_dependencies(A INCLUDE_EXTERNAL_MSPROJECT_B) > > > -Bill > Thank you very much for your help and the quick response. It works perfectly n

Re: [CMake] Addressing an external MS project as target

2008-11-11 Thread Bill Hoffman
Bill Hoffman wrote: So, this might work: include_external_msproject(B /some/path) add_dependencies(A B) I meant to say this: add_dependencies(A INCLUDE_EXTERNAL_MSPROJECT_B) -Bill ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailma

Re: [CMake] Addressing an external MS project as target

2008-11-11 Thread Bill Hoffman
Floca Ralf Omar wrote: Hello, there is the following situation: I use CMake as build control system (Windows platform, MS Visual Studio) for my own project (A). A depends on a second project (B). The project-files of B are pre generated and not covered by my CMake-Scripts. I use "INCLUDE_EXTER

[CMake] Addressing an external MS project as target

2008-11-10 Thread Floca Ralf Omar
Hello,   there is the following situation: I use CMake as build control system (Windows platform, MS Visual Studio) for my own project (A). A depends on a second project (B). The project-files of B are pre generated and not covered by my CMake-Scripts. I use "INCLUDE_EXTERNAL_MSPROJECT" to integ