Quote:
Originally Posted by DiapDealer
After Qt Creator builds the project, how does it get installed? Those files in the install prefix won't get created unless something actually issues the "make install" command. That folder structure doesn't get created in the normal build phase.
Just pulled a fresh copy from github, and all I can say is ... everything works as expected using the cmake, make, make install process. All files are copied to my install prefix--whether using the default /usr/local or specifying a custom one with -DCMAKE_INSTALL_PREFIX.
|
hmm, interesting... there is this:
Code:
if( UNIX AND NOT APPLE )
install( TARGETS ${PROJECT_NAME} RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin/ )
install( FILES ${LINUX_DESKTOP_FILE} DESTINATION ${CMAKE_INSTALL_PREFIX}/share/applications/ )
install( FILES ${LINUX_DESKTOP_ICON_FILE} DESTINATION ${CMAKE_INSTALL_PREFIX}/share/pixmaps RENAME sigil.png )
install( FILES ${QM_FILES} DESTINATION ${CMAKE_INSTALL_PREFIX}/share/sigil/translations/ )
install( FILES ${DIC_FILES} DESTINATION ${CMAKE_INSTALL_PREFIX}/share/sigil/hunspell_dictionaries/ )
install( FILES ${PLUGIN_FILES_PYTHON} DESTINATION ${CMAKE_INSTALL_PREFIX}/share/sigil/plugin_launchers/python/ )
install( FILES ${EXAMPLE_FILES} DESTINATION ${CMAKE_INSTALL_PREFIX}/share/sigil/examples/ )
endif()
in CMakeList.txt.
bin/ is created,
lib/ is there...(?!)
share/ is not. Qt Creator bug?
will try it manually - but not today...