diff options
author | Slávek Banko <[email protected]> | 2016-09-18 20:59:45 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2016-09-18 21:00:00 +0200 |
commit | 1404d26a1e72b9e29f460fe828d42af57d925a99 (patch) | |
tree | d67a20b74852662a123da6c6d537d6c84820bad6 /src/translators/btparse | |
parent | e92dc6bf694aea0048ea774c3226a135cd61b6ff (diff) | |
download | tellico-1404d26a1e72b9e29f460fe828d42af57d925a99.tar.gz tellico-1404d26a1e72b9e29f460fe828d42af57d925a99.zip |
Initial cmake conversion
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 3f7006b6807add37a3de957c525600a31424a498)
Diffstat (limited to 'src/translators/btparse')
-rw-r--r-- | src/translators/btparse/CMakeLists.txt | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/translators/btparse/CMakeLists.txt b/src/translators/btparse/CMakeLists.txt new file mode 100644 index 0000000..6490c0b --- /dev/null +++ b/src/translators/btparse/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} +) + + +##### btparse (static) ########################## + +tde_add_library( btparse STATIC_PIC AUTOMOC + SOURCES bibtex_ast.c bibtex.c err.c ast.c scan.c util.c lex_auxiliary.c parse_auxiliary.c format_name.c string_util.c tex_tree.c names.c modify.c traversal.c sym.c macros.c error.c postprocess.c input.c init.c +) |