diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2015-12-15 17:05:20 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2015-12-15 17:05:20 +0100 |
commit | 1710fab0965d32b883dfcc327c36d3fd38a91357 (patch) | |
tree | 1ba0d5d4728ff6405846a99549293a4b4c69da25 /examples/maildirresource/libmaildir/CMakeLists.txt | |
parent | 62d74778fa315091c5f0b99093bd806a1ccd7a79 (diff) | |
download | sink-1710fab0965d32b883dfcc327c36d3fd38a91357.tar.gz sink-1710fab0965d32b883dfcc327c36d3fd38a91357.zip |
A read-only maildir resource.
Respectively a first prototype thereof.
Diffstat (limited to 'examples/maildirresource/libmaildir/CMakeLists.txt')
-rw-r--r-- | examples/maildirresource/libmaildir/CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/maildirresource/libmaildir/CMakeLists.txt b/examples/maildirresource/libmaildir/CMakeLists.txt new file mode 100644 index 0000000..e7803f5 --- /dev/null +++ b/examples/maildirresource/libmaildir/CMakeLists.txt | |||
@@ -0,0 +1,8 @@ | |||
1 | # add_subdirectory( tests ) | ||
2 | |||
3 | set(maildir_LIB_SRCS keycache.cpp maildir.cpp) | ||
4 | |||
5 | add_library(maildir ${LIBRARY_TYPE} ${maildir_LIB_SRCS}) | ||
6 | qt5_use_modules(maildir Core Network) | ||
7 | # set_target_properties(maildir PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION} ) | ||
8 | install(TARGETS maildir ${INSTALL_TARGETS_DEFAULT_ARGS}) | ||