如何在没有库的情况下安装标题(仅限标题库)?

时间:2015-03-17 07:28:23

标签: c++ autotools automake

我需要在标准的include dir中安装一些标头(.hpp)。如果没有要编译的对象,如何告诉automake安装它们?通常我会将这些行放在我的Makefile.am

lib_LTLIBRARIES = libfoo.la
libfoo_la_SOURCES = \
    foo.cpp \
    bar.cpp
foo_includedir = $(includedir)/foo
foo_include_HEADERS = \
    foo.hpp \
    bar.hpp \
    ../config.h

1 个答案:

答案 0 :(得分:1)

您可以使用_DATA主要:

foodir = $(includedir)/foo
foo_DATA = foo.hpp bar.hpp ../config.h