diff options
Diffstat (limited to 'qtinterface')
-rw-r--r-- | qtinterface/CMakeLists.txt | 61 | ||||
-rw-r--r-- | qtinterface/interface_tqt3/_tqdummy_.h | 0 | ||||
-rw-r--r-- | qtinterface/interface_tqt3/tqapplication.cpp | 22 | ||||
-rw-r--r-- | qtinterface/tqt.pc.cmake | 11 | ||||
-rw-r--r-- | qtinterface/tqtqui.pc.cmake | 11 |
5 files changed, 0 insertions, 105 deletions
diff --git a/qtinterface/CMakeLists.txt b/qtinterface/CMakeLists.txt deleted file mode 100644 index 169b642..0000000 --- a/qtinterface/CMakeLists.txt +++ /dev/null @@ -1,61 +0,0 @@ -################################################# -# -# (C) 2010-2011 Serghei Amelian -# serghei (DOT) amelian (AT) gmail.com -# (C) 2011-2012 Timothy Pearson -# kb9vqf (AT) pearsoncomputing (DOT) net -# -# Improvements and feedback are welcome -# -# This file is released under GPL >= 2 -# -################################################# - -set( IFACE "interface_tqt3" ) - -include_directories( - ${CMAKE_CURRENT_BINARY_DIR} - ${CMAKE_CURRENT_SOURCE_DIR} - ${CMAKE_CURRENT_SOURCE_DIR}/private - ${TQT_INCLUDE_DIR} - ${CMAKE_CURRENT_SOURCE_DIR}/${IFACE} - ${CMAKE_CURRENT_SOURCE_DIR}/${IFACE}/private - ${CMAKE_BINARY_DIR} -) - -link_directories( - ${TQT_LIBRARY_DIR} -) - -##### headers ################################### - -install( FILES - ${IFACE}/_tqdummy_.h - DESTINATION ${INCLUDE_INSTALL_DIR} ) - -##### tqt pkgconfig ############################# - -string( REGEX REPLACE "^${CMAKE_INSTALL_PREFIX}" "\${prefix}" PC_EXEC_PREFIX ${EXEC_INSTALL_PREFIX} ) -string( REGEX REPLACE "^${CMAKE_INSTALL_PREFIX}" "\${prefix}" PC_INCLUDE_DIR ${INCLUDE_INSTALL_DIR} ) -string( REGEX REPLACE "^${CMAKE_INSTALL_PREFIX}" "\${prefix}" PC_LIB_DIR ${LIB_INSTALL_DIR} ) - -unset( PC_TQT_LIBRARIES ) -foreach( _lib ${TQT_LIBRARIES} ) - set( PC_TQT_LIBRARIES "${PC_TQT_LIBRARIES} -l${_lib}" ) -endforeach( ) - -configure_file( tqt.pc.cmake tqt.pc @ONLY ) -configure_file( tqtqui.pc.cmake tqtqui.pc @ONLY ) - -install( FILES ${CMAKE_CURRENT_BINARY_DIR}/tqt.pc DESTINATION ${PKGCONFIG_INSTALL_DIR} ) -install( FILES ${CMAKE_CURRENT_BINARY_DIR}/tqtqui.pc DESTINATION ${PKGCONFIG_INSTALL_DIR} ) - - -##### tqt (shared) ############################## - -tde_add_library( tqt SHARED - SOURCES ${IFACE}/tqapplication.cpp - VERSION 4.2.0 - LINK ${TQT_LIBRARIES} - DESTINATION ${LIB_INSTALL_DIR} -) diff --git a/qtinterface/interface_tqt3/_tqdummy_.h b/qtinterface/interface_tqt3/_tqdummy_.h deleted file mode 100644 index e69de29..0000000 --- a/qtinterface/interface_tqt3/_tqdummy_.h +++ /dev/null diff --git a/qtinterface/interface_tqt3/tqapplication.cpp b/qtinterface/interface_tqt3/tqapplication.cpp deleted file mode 100644 index 251f1b2..0000000 --- a/qtinterface/interface_tqt3/tqapplication.cpp +++ /dev/null @@ -1,22 +0,0 @@ -/* - -Copyright (C) 2010 Timothy Pearson <kb9vqf@pearsoncomputing.net> - -This library is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public -License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. - -You should have received a copy of the GNU Library General Public License -along with this library; see the file COPYING.LIB. If not, write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA 02110-1301, USA. - -*/ - -#include <tqapplication.h> diff --git a/qtinterface/tqt.pc.cmake b/qtinterface/tqt.pc.cmake deleted file mode 100644 index 8c94efe..0000000 --- a/qtinterface/tqt.pc.cmake +++ /dev/null @@ -1,11 +0,0 @@ -prefix=@CMAKE_INSTALL_PREFIX@ -exec_prefix=@PC_EXEC_PREFIX@ -libdir=@PC_LIB_DIR@ -includedir=@PC_INCLUDE_DIR@ - -Name: TQt -Description: Interface and abstraction library for Qt and Trinity -Version: @TQT_VERSION@ -Libs: -L${libdir} -ltqt -L@TQT_LIBRARY_DIR@ @PC_TQT_LIBRARIES@ -Cflags: @QT_DEFINITIONS@ -I@TQT_INCLUDE_DIR@ -I${includedir} -include tqt.h - diff --git a/qtinterface/tqtqui.pc.cmake b/qtinterface/tqtqui.pc.cmake deleted file mode 100644 index f968fbb..0000000 --- a/qtinterface/tqtqui.pc.cmake +++ /dev/null @@ -1,11 +0,0 @@ -prefix=@CMAKE_INSTALL_PREFIX@ -exec_prefix=@PC_EXEC_PREFIX@ -libdir=@PC_LIB_DIR@ -includedir=@PC_INCLUDE_DIR@ - -Name: TQtQUI -Description: Interface and abstraction library for Qt and Trinity (QUI library) -Version: @TQT_VERSION@ -Libs: -L${libdir} -ltqt -ltqui -L@TQT_LIBRARY_DIR@ @PC_TQT_LIBRARIES@ -Cflags: @QT_DEFINITIONS@ -I@TQT_INCLUDE_DIR@ -I${includedir} -include tqt.h - |