summaryrefslogtreecommitdiffstats
path: root/python/mozbuild/mozbuild/test/frontend/data/test-install-shared-lib/moz.build
blob: fa592c72a39ca4ddca6027d5317f53e12fcd583e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Any copyright is dedicated to the Public Domain.
# http://creativecommons.org/publicdomain/zero/1.0/


@template
def SharedLibrary(name):
    LIBRARY_NAME = name
    FORCE_SHARED_LIB = True


DIST_INSTALL = False
SharedLibrary("foo")

TEST_HARNESS_FILES.foo.bar += [
    "!%sfoo%s" % (CONFIG["DLL_PREFIX"], CONFIG["DLL_SUFFIX"])
]