diff options
Diffstat (limited to 'src/rtf2html/CMakeLists.txt')
-rw-r--r-- | src/rtf2html/CMakeLists.txt | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/rtf2html/CMakeLists.txt b/src/rtf2html/CMakeLists.txt new file mode 100644 index 0000000..400b9a8 --- /dev/null +++ b/src/rtf2html/CMakeLists.txt @@ -0,0 +1,29 @@ +################################################# +# +# (C) 2016 Slávek Banko +# slavek (DOT) banko (AT) axis.cz +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### rtf2html (static) ######################### + +tde_add_library( rtf2html STATIC_PIC AUTOMOC + SOURCES fmt_opts.cpp rtf2html.cpp rtf_keyword.cpp rtf_table.cpp +) |