apparently we can't have a binary and a library with the same name. so now it's libplasmoid and the binary is plasma.

svn path=/trunk/KDE/kdebase/workspace/plasma/lib/; revision=666763
This commit is contained in:
Aaron J. Seigo 2007-05-20 20:54:48 +00:00
parent b8cc485705
commit 08707215dd

View File

@ -2,7 +2,7 @@ include_directories(${CMAKE_CURRENT_SOURCE_DIR})
########### next target ############### ########### next target ###############
set(plasma_LIB_SRCS set(plasmoid_LIB_SRCS
abstractrunner.cpp abstractrunner.cpp
applet.cpp applet.cpp
dataengine.cpp dataengine.cpp
@ -19,14 +19,14 @@ set(plasma_LIB_SRCS
widgets/widget.cpp widgets/widget.cpp
) )
kde4_automoc(${plasma_LIB_SRCS}) kde4_automoc(${plasmoid_LIB_SRCS})
kde4_add_library(plasma SHARED ${plasma_LIB_SRCS}) kde4_add_library(plasmoid SHARED ${plasmoid_LIB_SRCS})
target_link_libraries(plasma ${KDE4_KIO_LIBS} ) target_link_libraries(plasmoid ${KDE4_KIO_LIBS} )
set_target_properties(plasma PROPERTIES VERSION 1.0.0 SOVERSION 1 ) set_target_properties(plasmoid PROPERTIES VERSION 1.0.0 SOVERSION 1 )
install(TARGETS plasma DESTINATION ${LIB_INSTALL_DIR} ) install(TARGETS plasmoid DESTINATION ${LIB_INSTALL_DIR} )
########### install files ############### ########### install files ###############