diff options
author | gregory guy <[email protected]> | 2020-05-02 14:03:33 +0200 |
---|---|---|
committer | gregory guy <[email protected]> | 2020-05-02 14:03:33 +0200 |
commit | 8cd5ae54d7f40d20afaef55596376d0df17f36bf (patch) | |
tree | ccd922212906f7840ca07b90019b896727fcf58f /src | |
parent | 9237683fca3f0f83c53a191c1b159ecc8f05df18 (diff) | |
download | tdeio-umountwrapper-8cd5ae54d7f40d20afaef55596376d0df17f36bf.tar.gz tdeio-umountwrapper-8cd5ae54d7f40d20afaef55596376d0df17f36bf.zip |
Drop automake build support.
Add basic cmake build instructions.
Rework of the README file.
Delete empty files: ChangeLog, NEWS and TODO.
Some cosmetics.
Signed-off-by: gregory guy <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/Makefile.am b/src/Makefile.am deleted file mode 100644 index b4255bf..0000000 --- a/src/Makefile.am +++ /dev/null @@ -1,27 +0,0 @@ -# set the include path for X, qt and KDE -INCLUDES = $(all_includes) - -# these are the headers for your project -noinst_HEADERS = tdeio_umountwrapper.h - -# let automoc handle all of the meta source files (moc) -METASOURCES = AUTO - -messages: rc.cpp - $(EXTRACTRC) `find . -name \*.ui -o -name \*.rc` > rc.cpp - $(XGETTEXT) *.cpp -o $(podir)/tdeio_umountwrapper.pot - -KDE_ICON = AUTO - -######################################################################### -# APPLICATION SECTION -######################################################################### -# this is the program that gets installed. it's name is used for all -# of the other Makefile.am variables -bin_PROGRAMS = tdeio_umountwrapper - -# the application source, library search path, and link libraries -tdeio_umountwrapper_SOURCES = main.cpp tdeio_umountwrapper.cpp -tdeio_umountwrapper_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_TQT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor -tdeio_umountwrapper_LDADD = $(LIB_TDEUI) - |