makefile.am 可以为一组目标设置 LDADD 吗?

发布于 2024-11-19 21:27:34 字数 87 浏览 3 评论 0原文

我将单元测试放在源代码的同一目录中。但是我如何在 Makefile.am 中为所有这些单元测试设置 LDADD 以使用特定的库(例如 google test)?

I placed unit tests within the same directory of source code. But how could I set the LDADD in Makefile.am for all these unit tests to use specific libraries (e.g google test)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

提笔书几行 2024-11-26 21:27:35

LDADD 的内容用于所有目标,除非该变量被 target_LDADD 覆盖。因此,如果您有很多单元测试,并且只有几个实际程序,您可以使用 LDADD 进行单元测试,并为具有不同链接要求的每个程序覆盖它。

LDADD = libtest.a   # Used by default for all targets

# Unit tests, using above LDADD
check_PROGRAMS = one two three
one_SOURCES = one.c
two_SOURCES = two.c
three_SOURCES = three.c

# Main program
bin_PROGRAMS = main
main_SOURCES = main.c
main_LDADD =        # Override the LDADD setting.

类似的示例可以在 LDADD 的文档中找到

The contents of LDADD are used for all target unless this variable is overridden with target_LDADD. So if you have many unit tests, and only a few actual programs, you may use LDADD for the unit tests and override it for each program with different linking requirements.

LDADD = libtest.a   # Used by default for all targets

# Unit tests, using above LDADD
check_PROGRAMS = one two three
one_SOURCES = one.c
two_SOURCES = two.c
three_SOURCES = three.c

# Main program
bin_PROGRAMS = main
main_SOURCES = main.c
main_LDADD =        # Override the LDADD setting.

A similar example can be found in the documentation of LDADD.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文