iron261 / openjpeg

Automatically exported from code.google.com/p/openjpeg
Other
0 stars 0 forks source link

MJ2 libraries are installed in lib #204

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
On windows, both DLL and import lib are installed in "lib" folder.

I think

install(TARGETS ${OPENMJ2_LIBRARY_NAME}
  EXPORT OpenMJ2Targets
  DESTINATION ${OPENJPEG_INSTALL_LIB_DIR} 
  COMPONENT Libraries
)

should read :

install(TARGETS ${OPENMJ2_LIBRARY_NAME}
  EXPORT OpenJPEGTargets
  RUNTIME DESTINATION ${OPENJPEG_INSTALL_BIN_DIR} COMPONENT Applications
  LIBRARY DESTINATION ${OPENJPEG_INSTALL_LIB_DIR} COMPONENT Libraries
  ARCHIVE DESTINATION ${OPENJPEG_INSTALL_LIB_DIR} COMPONENT Libraries
)

Original issue reported on code.google.com by julien.m...@c-s.fr on 17 Dec 2012 at 1:51

GoogleCodeExporter commented 9 years ago
The package provided for the release 2.0 has the bug.

Original comment by julien.m...@c-s.fr on 17 Dec 2012 at 1:52

GoogleCodeExporter commented 9 years ago

Original comment by mathieu.malaterre on 27 Feb 2014 at 5:09