Details
-
Bug
-
Resolution: Fixed
-
Not Evaluated
-
Qt Creator 10.0.0
-
None
-
-
c53c9592f (10.0)
Description
The "Qt Console Application" project wizard creates the following install command
install(TARGETS myapp LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
The target is not a library. The installation command should look like this
install(TARGETS myapp RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})