From 32674f9733668b152d036ac41a749de29d8ac54e Mon Sep 17 00:00:00 2001 From: Akos Kiss Date: Thu, 12 Nov 2020 11:00:11 +0100 Subject: [PATCH] Fix name of install directory of jerry-libm header(s) (#4332) All installed headers and header directories of the project have the `jerryscript-` prefix, except the math library, which installed its `math.h` under `jerry-libm` directory. This commit changes the name of the include directory to `jerryscript-libm` to align it with the rest of the project. JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu --- jerry-libm/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jerry-libm/CMakeLists.txt b/jerry-libm/CMakeLists.txt index 88a7f6e80..7f6356a50 100644 --- a/jerry-libm/CMakeLists.txt +++ b/jerry-libm/CMakeLists.txt @@ -64,4 +64,4 @@ configure_file(libjerry-libm.pc.in libjerry-libm.pc @ONLY) install(TARGETS ${JERRY_LIBM_NAME} DESTINATION lib) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libjerry-libm.pc DESTINATION lib/pkgconfig) -install(DIRECTORY ${INCLUDE_LIBM}/ DESTINATION include/jerry-libm) +install(DIRECTORY ${INCLUDE_LIBM}/ DESTINATION include/jerryscript-libm)