Skip to content

Commit

Permalink
Fixed regression in install dest for static library.
Browse files Browse the repository at this point in the history
Due to a mistake, 0.28.1 installed libcmark.a into include/.

Closes #238.
  • Loading branch information
jgm committed Oct 12, 2017
1 parent 749e5f1 commit a54e12c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a54e12c

Please sign in to comment.