From 4557eb6b1b81bc8576debbb508ad08081ce06f60 Mon Sep 17 00:00:00 2001 From: Dominik Schmidt Date: Sat, 3 Nov 2012 01:56:28 +0100 Subject: [PATCH] Remove outdated hypem-CMakeLists --- src/infoplugins/generic/hypem/CMakeLists.txt | 43 -------------------- 1 file changed, 43 deletions(-) delete mode 100644 src/infoplugins/generic/hypem/CMakeLists.txt diff --git a/src/infoplugins/generic/hypem/CMakeLists.txt b/src/infoplugins/generic/hypem/CMakeLists.txt deleted file mode 100644 index 074399881..000000000 --- a/src/infoplugins/generic/hypem/CMakeLists.txt +++ /dev/null @@ -1,43 +0,0 @@ -project( tomahawk ) - -include( ${QT_USE_FILE} ) -add_definitions( ${QT_DEFINITIONS} ) -add_definitions( -DQT_PLUGIN ) -add_definitions( -DQT_SHARED ) -add_definitions( -DINFOPLUGINDLLEXPORT_PRO ) - -set( hypemInfoPluginSources - HypemPlugin.cpp -) - -set( hypemInfoPluginHeaders - HypemPlugin.h -) - -include_directories( - ${QT_INCLUDE_DIR} -) - -qt4_wrap_cpp( hypemInfoPluginMoc ${hypemInfoPluginHeaders} ) -add_library( tomahawk_infoplugin_hypem SHARED ${hypemInfoPluginSources} ${hypemInfoPluginMoc} ${RC_SRCS} ) - -IF( WIN32 ) -SET( OS_SPECIFIC_LINK_LIBRARIES - ${OS_SPECIFIC_LINK_LIBRARIES} - "winmm.dll" - "iphlpapi.a" -) -ENDIF( WIN32 ) - -target_link_libraries( tomahawk_infoplugin_hypem - ${TOMAHAWK_LIBRARIES} - ${QT_LIBRARIES} - ${OS_SPECIFIC_LINK_LIBRARIES} -) - -IF( APPLE ) -# SET( CMAKE_SHARED_LINKER_FLAGS ${CMAKE_SHARED_LINKER_FLAGS} "-undefined dynamic_lookup" ) -ENDIF( APPLE ) - -install( TARGETS tomahawk_infoplugin_hypem DESTINATION ${CMAKE_INSTALL_LIBDIR} ) -