Skip to content
This repository was archived by the owner on Nov 20, 2020. It is now read-only.

Commit b7e2cb0

Browse files
committed
Corrected installation of libraries
1 parent 836e0e3 commit b7e2cb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ FILE(GLOB LCMS_SRCS "src/*.c" "src/*.def")
99
ADD_LIBRARY(lcms2 SHARED ${LCMS_SRCS})
1010

1111
# install
12-
INSTALL(TARGETS lcms2 DESTINATION ${INSTALL_LIB})
12+
INSTALL(TARGETS lcms2 RUNTIME DESTINATION ${INSTALL_BIN} LIBRARY DESTINATION ${INSTALL_LIB} ARCHIVE DESTINATION ${INSTALL_LIB})
1313
INSTALL(FILES include/lcms2.h DESTINATION ${INSTALL_INC})
1414
INSTALL(DIRECTORY doc DESTINATION ${INSTALL_DOC})
1515
INSTALL(FILES AUTHORS COPYING ChangeLog NEWS README.1ST DESTINATION ${INSTALL_DOC})

0 commit comments

Comments
 (0)