pkgconfig: add support for pkgconfig generation for c#

this adds support for generating pkgconfig files for c#.

The difference to c and cpp is that the -I flag is not known to the c#
compiler, but rather the -r flag which is used to link a .dll file into
the compiled library.

However this opens the question of validating which pkgconfig files can
be generated (depending on the language).

This implements 4409.
pull/4543/head
Marcel Hollerbach 6 years ago committed by Jussi Pakkanen
parent 5e91eb3d0c
commit 443a4a8c78
  1. 7
      mesonbuild/modules/pkgconfig.py
  2. 11
      run_unittests.py
  3. 10
      test cases/unit/48 pkgconfig csharp library/meson.build
  4. 12
      test cases/unit/48 pkgconfig csharp library/somelib.cs

@ -276,6 +276,12 @@ class PkgConfigModule(ExtensionModule):
install_dir = l.get_custom_install_dir()[0]
if install_dir is False:
continue
if 'cs' in l.compilers:
if isinstance(install_dir, str):
Lflag = '-r${prefix}/%s/%s ' % (self._escape(self._make_relative(prefix, install_dir)), l.filename)
else: # install_dir is True
Lflag = '-r${libdir}/%s' % l.filename
else:
if isinstance(install_dir, str):
Lflag = '-L${prefix}/%s ' % self._escape(self._make_relative(prefix, install_dir))
else: # install_dir is True
@ -288,6 +294,7 @@ class PkgConfigModule(ExtensionModule):
# find the library
if l.name_suffix_set:
mlog.warning(msg.format(l.name, 'name_suffix', lname, pcfile))
if 'cs' not in l.compilers:
yield '-l%s' % lname
if len(deps.pub_libs) > 0:

@ -4162,6 +4162,17 @@ endian = 'little'
deps.append(b'-lintl')
self.assertEqual(set(deps), set(stdo.split()))
@skipIfNoPkgconfig
@skip_if_not_language('cs')
def test_pkgconfig_csharp_library(self):
testdir = os.path.join(self.unit_test_dir, '48 pkgconfig csharp library')
self.init(testdir)
myenv = os.environ.copy()
myenv['PKG_CONFIG_PATH'] = self.privatedir
stdo = subprocess.check_output(['pkg-config', '--libs', 'libsomething'], env=myenv)
self.assertEqual("-r/usr/lib/libsomething.dll", str(stdo.decode('ascii')).strip())
def test_deterministic_dep_order(self):
'''
Test that the dependencies are always listed in a deterministic order.

@ -0,0 +1,10 @@
project('pkgformat', 'cs',
version : '1.0')
pkgg = import('pkgconfig')
l = library('libsomething', 'somelib.cs')
pkgg.generate(l,
version: '1.0',
description: 'A library that does something')

@ -0,0 +1,12 @@
using System;
namespace Abc
{
public static class Something
{
public static bool Api1(this String str)
{
return str == "foo";
}
}
}
Loading…
Cancel
Save