diff options
author | gregory guy <[email protected]> | 2019-01-01 13:06:27 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-01-01 19:46:57 +0100 |
commit | 79583b3adacd0d3930ecef478a8535a7f4797803 (patch) | |
tree | 854b19e9f1b418d7bf643a8338ebcc3d21400a09 /src/parsers | |
parent | 4f06bd748c726dacd29cd25eefa1502c835e4ed3 (diff) | |
download | tdeio-apt-79583b3adacd0d3930ecef478a8535a7f4797803.tar.gz tdeio-apt-79583b3adacd0d3930ecef478a8535a7f4797803.zip |
conversion to the cmake building system
Signed-off-by: gregory guy <[email protected]>
(cherry picked from commit d1629627d4dc41b6235448811009b2cbe5c08f43)
Diffstat (limited to 'src/parsers')
-rw-r--r-- | src/parsers/CMakeLists.txt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/parsers/CMakeLists.txt b/src/parsers/CMakeLists.txt new file mode 100644 index 0000000..116447b --- /dev/null +++ b/src/parsers/CMakeLists.txt @@ -0,0 +1,28 @@ +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} +) + + +##### parsers (static) + +tde_add_library( parsers STATIC_PIC AUTOMOC + + SOURCES + list.cpp + search.cpp + policy.cpp + show.cpp + parsers.cpp + filesearch.cpp + LINK + tdeio-shared +) |