Re: [cmake-developers] 3.12.0-rc1: C# project outputting as a "vcxproj" (C++ project)

2018-06-26 Thread Stuermer, Michael SP/HZA-ZSEP
Robert > Dailey > Gesendet: Dienstag, 26. Juni 2018 17:34 > An: Brad King > Cc: Stuermer, Michael SP/HZA-ZSEP; CMake Developers > Betreff: Re: [cmake-developers] 3.12.0-rc1: C# project outputting as a > "vcxproj" (C++ project) > > I'm happy to do that. I assume you wou

Re: [cmake-developers] 3.12.0-rc1: C# project outputting as a "vcxproj" (C++ project)

2018-06-26 Thread Brad King
On 06/26/2018 11:34 AM, Robert Dailey wrote: > I'm happy to do that. I assume you would require an MCVE for that bug? > If so it will take me considerably longer, as I don't have a lot of > time to build a reproducible example from scratch. I'll do my best, > though. Even without a MCVE it's

Re: [cmake-developers] 3.12.0-rc1: C# project outputting as a "vcxproj" (C++ project)

2018-06-26 Thread Robert Dailey
I'm happy to do that. I assume you would require an MCVE for that bug? If so it will take me considerably longer, as I don't have a lot of time to build a reproducible example from scratch. I'll do my best, though. On Tue, Jun 26, 2018 at 10:06 AM, Brad King wrote: > On 06/26/2018 10:25 AM,

Re: [cmake-developers] 3.12.0-rc1: C# project outputting as a "vcxproj" (C++ project)

2018-06-26 Thread Brad King
On 06/26/2018 10:25 AM, Robert Dailey wrote: > To fix this issue for now I had to do this: > > set_property( TARGET ${project_name} PROPERTY LINKER_LANGUAGE CSharp ) > > I don't remember having to explicitly tell CMake that the project is > CSharp in the past; it was always able to

Re: [cmake-developers] 3.12.0-rc1: C# project outputting as a "vcxproj" (C++ project)

2018-06-26 Thread Robert Dailey
To fix this issue for now I had to do this: set_property( TARGET ${project_name} PROPERTY LINKER_LANGUAGE CSharp ) I don't remember having to explicitly tell CMake that the project is CSharp in the past; it was always able to deduce it before. Is this considered a symptom of a bug? Or is

[cmake-developers] 3.12.0-rc1: C# project outputting as a "vcxproj" (C++ project)

2018-06-26 Thread Robert Dailey
Using 3.12.0-rc1, if I create a C# project, but use `target_link_libraries` on it to pull in a dependency to a managed C++ target, the C# project turns into a "vcxproj" after generation, whereas if I remove the "target_link_libraries()" call, it outputs as a "csproj" as I expect. Is this a known