diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-10-12 07:57:54 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-10-12 07:57:54 -0700 |
commit | a54e12c9e5da809b425cc0f2c01d30953f4ab512 (patch) | |
tree | 8c7170a3f1cdaa8799dcc06d306ffe788fe0bb9c /src | |
parent | 749e5f1279d300c18d5ae264438d974289dafe2a (diff) |
Fixed regression in install dest for static library.
Due to a mistake, 0.28.1 installed libcmark.a into include/.
Closes #238.
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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) |