mirror of
https://github.com/reactos/CMake.git
synced 2024-12-05 02:06:34 +00:00
076a356cd1
When specifying a pure C# target in the `target_link_libraries()` call to another C++ target, a `<ProjectReference>` was setup for it (we wanted this) but also a corresponding `.lib` was added under `<AdditionalDependencies>` (we didn't want this). This change introduces a check that prevents `.lib` linker options from being used when the corresponding target for that library is a C# target. Fixes: #17678
13 lines
192 B
C#
13 lines
192 B
C#
using System;
|
|
|
|
namespace CSharpLibrary
|
|
{
|
|
public class UsefulCSharpClass
|
|
{
|
|
public string GetSomethingUseful()
|
|
{
|
|
return "Something Useful";
|
|
}
|
|
}
|
|
}
|