From a54e12c9e5da809b425cc0f2c01d30953f4ab512 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Thu, 12 Oct 2017 07:57:54 -0700 Subject: Fixed regression in install dest for static library. Due to a mistake, 0.28.1 installed libcmark.a into include/. Closes #238. --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 87832dc..148cf78 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -130,7 +130,7 @@ install(TARGETS ${PROGRAM} ${CMARK_INSTALL} EXPORT cmark RUNTIME DESTINATION bin LIBRARY DESTINATION ${libdir} - ARCHIVE DESTINATION include + ARCHIVE DESTINATION ${libdir} ) if(CMARK_SHARED OR CMARK_STATIC) -- cgit v1.2.3