* CMakeLists.txt: Specify `RUNTIME DESTINATION'.

This is needed for DLL builds.
This commit is contained in:
Werner Lemberg 2018-10-17 11:25:32 +02:00
parent 428854931e
commit 0c4feb72cf
2 changed files with 7 additions and 0 deletions

View File

@ -469,6 +469,7 @@ if (NOT SKIP_INSTALL_LIBRARIES AND NOT SKIP_INSTALL_ALL)
EXPORT freetype-targets
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
FRAMEWORK DESTINATION Library/Frameworks
COMPONENT libraries)
install(

View File

@ -1,3 +1,9 @@
2018-10-17 David Demelier <markand@malikania.fr>
* CMakeLists.txt: Specify `RUNTIME DESTINATION'.
This is needed for DLL builds.
2018-10-07 Werner Lemberg <wl@gnu.org>
A missing Unicode cmap is not a fatal error.