From aecac82263fe87678f7d8bde7efa7e6832cb1639 Mon Sep 17 00:00:00 2001 From: cschreib Date: Wed, 14 Jun 2017 16:52:52 +0200 Subject: [PATCH] Added missing install target for include file --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 902f126..3d37e57 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,6 +29,7 @@ if (TE_NAT_LOG) endif() target_link_libraries(tinyexpr ${MATH_LIB}) install(TARGETS tinyexpr ARCHIVE DESTINATION lib) +install(FILES tinyexpr.h DESTINATION include COMPONENT Devel) if (build_tinyexpr_test) add_executable(tinyexpr_test test.c tinyexpr.c)