mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-23 18:32:50 +00:00
generic: remove build variable used to specify library type
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
39644edba3
commit
d728c33c83
4 changed files with 3 additions and 5 deletions
|
@ -8,8 +8,6 @@ include(FeatureSummary)
|
|||
find_package(KDE4 4.23.0 REQUIRED)
|
||||
include(KDE4Defaults)
|
||||
|
||||
set(LIBRARY_TYPE SHARED)
|
||||
|
||||
# kdelibs requires 0.91
|
||||
find_package(SharedMimeInfo 0.91)
|
||||
set_package_properties(SharedMimeInfo PROPERTIES
|
||||
|
|
|
@ -151,7 +151,7 @@ set(katepart_PART_SRCS
|
|||
|
||||
add_definitions(-DKDE_DEFAULT_DEBUG_AREA=13000)
|
||||
|
||||
add_library(katepartinterfaces ${LIBRARY_TYPE} ${katepart_PART_SRCS})
|
||||
add_library(katepartinterfaces SHARED ${katepart_PART_SRCS})
|
||||
|
||||
target_link_libraries(katepartinterfaces
|
||||
${KDE4_KDECORE_LIBS}
|
||||
|
|
|
@ -28,7 +28,7 @@ set(kateinterfaces_LIB_SRCS
|
|||
|
||||
|
||||
|
||||
add_library(kateinterfaces ${LIBRARY_TYPE} ${kateinterfaces_LIB_SRCS})
|
||||
add_library(kateinterfaces SHARED ${kateinterfaces_LIB_SRCS})
|
||||
|
||||
target_link_libraries(kateinterfaces PUBLIC
|
||||
${QT_QTXML_LIBRARY}
|
||||
|
|
|
@ -16,7 +16,7 @@ set(konq_LIB_SRCS
|
|||
kversioncontrolplugin.cpp # used by dolphin and its version control plugins
|
||||
)
|
||||
|
||||
add_library(konq ${LIBRARY_TYPE} ${konq_LIB_SRCS})
|
||||
add_library(konq SHARED ${konq_LIB_SRCS})
|
||||
|
||||
target_link_libraries(konq PRIVATE
|
||||
${X11_X11_LIB}
|
||||
|
|
Loading…
Add table
Reference in a new issue