1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-13 04:21:51 +02:00

Install to "." makes libraries install into very bad (and non-working) locations. Put them

in lib like they're supposed to be...(and like they are elsewhere in the
app)
This commit is contained in:
Jeff Mitchell 2010-12-30 20:28:29 -05:00
parent 8b9b02e15d
commit aaf7fc7c3f
4 changed files with 4 additions and 4 deletions

View File

@ -46,6 +46,6 @@ ENDIF()
# )
#TARGET_LINK_LIBRARIES(portfwd-demo portfwd)
INSTALL(TARGETS portfwd ARCHIVE DESTINATION .)
INSTALL(TARGETS portfwd ARCHIVE DESTINATION lib)
#INSTALL(TARGETS portfwd-demo RUNTIME DESTINATION bin)
#INSTALL(DIRECTORY include/portfwd DESTINATION include PATTERN "*~" EXCLUDE)

View File

@ -147,4 +147,4 @@ target_link_libraries( tomahawklib
qjson
)
install( TARGETS tomahawklib DESTINATION . )
install( TARGETS tomahawklib DESTINATION lib )

View File

@ -39,4 +39,4 @@ IF( APPLE )
SET( CMAKE_SHARED_LINKER_FLAGS ${CMAKE_SHARED_LINKER_FLAGS} "-undefined dynamic_lookup" )
ENDIF( APPLE )
install( TARGETS sip_jabber DESTINATION . )
install( TARGETS sip_jabber DESTINATION lib )

View File

@ -37,4 +37,4 @@ IF( APPLE )
SET( CMAKE_SHARED_LINKER_FLAGS ${CMAKE_SHARED_LINKER_FLAGS} "-undefined dynamic_lookup" )
ENDIF( APPLE )
install( TARGETS sip_zeroconf DESTINATION . )
install( TARGETS sip_zeroconf DESTINATION lib )