diff options
| author | gregory guy <g-gregory@gmx.fr> | 2019-03-03 06:28:00 +0100 |
|---|---|---|
| committer | Slávek Banko <slavek.banko@axis.cz> | 2019-03-03 06:28:23 +0100 |
| commit | a4a23a811fa340a8257a1f78f41904e58eea2dd4 (patch) | |
| tree | d187de74550ce992d77932b8444af97b31b6f8a1 /src | |
| parent | dcee199c44384da39518bc1a00db62d2162f528f (diff) | |
| download | mplayerthumbs-a4a23a811fa340a8257a1f78f41904e58eea2dd4.tar.gz mplayerthumbs-a4a23a811fa340a8257a1f78f41904e58eea2dd4.zip | |
conversion to the cmake building system
Signed-off-by: gregory guy <g-gregory@gmx.fr>
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'src')
| -rw-r--r-- | src/CMakeLists.txt | 66 | ||||
| -rw-r--r-- | src/mplayerthumbsconfig/CMakeLists.txt | 35 | ||||
| -rw-r--r-- | src/mplayerthumbsconfig/mplayerthumbscfg.cpp | 6 | ||||
| -rw-r--r-- | src/videopreview.cpp | 18 | ||||
| -rw-r--r-- | src/videopreview.h | 8 |
5 files changed, 117 insertions, 16 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..728fea0 --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,66 @@ +add_subdirectory( mplayerthumbsconfig ) + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${TDE_LIB_DIR} +) + + +##### videopreview (kpart) + +tde_add_kpart( videopreview AUTOMOC + + SOURCES + videopreview.cpp + LINK + tdecore-shared + mplayerthumbscfg-static + + DESTINATION ${PLUGIN_INSTALL_DIR} +) + +set_property( + SOURCE videopreview.cpp + APPEND PROPERTY + OBJECT_DEPENDS ${CMAKE_BINARY_DIR}/src/mplayerthumbs.cpp +) + +##### mplayerthumbscfg (static) + +tde_add_library( mplayerthumbscfg STATIC_PIC AUTOMOC + + SOURCES + mplayerthumbs.kcfgc + LINK + tdecore-shared +) + + +##### other data + +install( + FILES videopreview.desktop + DESTINATION ${SERVICES_INSTALL_DIR} +) + +install( + FILES + sprocket-small.png + sprocket-medium.png + sprocket-large.png + + DESTINATION ${DATA_INSTALL_DIR}/videopreview +) + +install( + FILES mplayerthumbs.kcfg + DESTINATION ${KCFG_INSTALL_DIR} +) diff --git a/src/mplayerthumbsconfig/CMakeLists.txt b/src/mplayerthumbsconfig/CMakeLists.txt new file mode 100644 index 0000000..12df3ef --- /dev/null +++ b/src/mplayerthumbsconfig/CMakeLists.txt @@ -0,0 +1,35 @@ +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} + ${CMAKE_BINARY_DIR}/src +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${TDE_LIB_DIR} +) + + +##### mplayerthumbsconfig (executable) + +tde_add_executable( mplayerthumbsconfig AUTOMOC + + SOURCES + main.cpp + mplayerthumbscfg.cpp + LINK + tdecore-shared + tdeui-shared + mplayerthumbscfg-static + + DESTINATION ${BIN_INSTALL_DIR} +) + +set_property( + SOURCE main.cpp mplayerthumbscfg.cpp + APPEND PROPERTY + OBJECT_DEPENDS ${CMAKE_BINARY_DIR}/src/mplayerthumbs.cpp +) diff --git a/src/mplayerthumbsconfig/mplayerthumbscfg.cpp b/src/mplayerthumbsconfig/mplayerthumbscfg.cpp index afd2b82..02fe59d 100644 --- a/src/mplayerthumbsconfig/mplayerthumbscfg.cpp +++ b/src/mplayerthumbsconfig/mplayerthumbscfg.cpp @@ -19,14 +19,14 @@ ***************************************************************************/ #include "mplayerthumbscfg.h" -#include <ntqvbox.h> +#include <tqvbox.h> #include <klineedit.h> #include <kpushbutton.h> -#include <ntqlabel.h> +#include <tqlabel.h> #include <tdelocale.h> #include <kstandarddirs.h> #include <kdebug.h> -#include <ntqtimer.h> +#include <tqtimer.h> #include <keditlistbox.h> MPlayerThumbsConfig::MPlayerThumbsConfig(TQWidget *parent, const char *name, MPlayerThumbsCfg *config, DialogType dialogType, int dialogButtons, ButtonCode defaultButton, bool modal) diff --git a/src/videopreview.cpp b/src/videopreview.cpp index fa64568..b11acbb 100644 --- a/src/videopreview.cpp +++ b/src/videopreview.cpp @@ -20,24 +20,24 @@ #include "videopreview.h" -#include <ntqfile.h> -#include <ntqpixmap.h> -#include <ntqimage.h> +#include <tqfile.h> +#include <tqpixmap.h> +#include <tqimage.h> #include <kstandarddirs.h> #include <kpixmapsplitter.h> #include <kmimetype.h> -#include <ntqpainter.h> +#include <tqpainter.h> #include <krandomsequence.h> -#include <ntqdatetime.h> -#include <ntqregexp.h> -#include "videopreview.h" -#include <ntqprocess.h> +#include <tqdatetime.h> +#include <tqregexp.h> + +#include <tqprocess.h> #include <kdebug.h> #include <ktempdir.h> #include <kurl.h> #include <math.h> -#include <ntqfileinfo.h> +#include <tqfileinfo.h> #include <cstdlib> #include <unistd.h> diff --git a/src/videopreview.h b/src/videopreview.h index 78f5b74..418b77b 100644 --- a/src/videopreview.h +++ b/src/videopreview.h @@ -21,10 +21,10 @@ #ifndef _videopreview_H_ #define _videopreview_H_ -#include <ntqstring.h> -#include <ntqcstring.h> +#include <tqstring.h> +#include <tqcstring.h> -#include <ntqpixmap.h> +#include <tqpixmap.h> #include <tdeio/thumbcreator.h> class TQProcess; @@ -32,7 +32,7 @@ class TQCString; class KTempDir; class KRandomSequence; class KPixmapSplitter; -#include <ntqobject.h> +#include <tqobject.h> class VideoPreview : public TQObject, public ThumbCreator { |
