From febacdee5bf580932e1937f656b475762b48acd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Wed, 16 Mar 2022 23:34:43 +0100 Subject: Conversion to the cmake building system. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko (cherry picked from commit a6454b1658d325d6ff2d6ba6c349b772148798e0) --- kmymoney2/reports/CMakeLists.txt | 55 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 kmymoney2/reports/CMakeLists.txt (limited to 'kmymoney2/reports') diff --git a/kmymoney2/reports/CMakeLists.txt b/kmymoney2/reports/CMakeLists.txt new file mode 100644 index 0000000..70ab830 --- /dev/null +++ b/kmymoney2/reports/CMakeLists.txt @@ -0,0 +1,55 @@ + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_SOURCE_DIR} + ${CMAKE_BINARY_DIR}/include + ${CMAKE_SOURCE_DIR}/libkdchart + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### reports (static) + +tde_add_library( reports STATIC_PIC AUTOMOC + SOURCES + pivotgrid.cpp + pivottable.cpp + listtable.cpp + querytable.cpp + objectinfotable.cpp + reportaccount.cpp + kreportchartview.cpp + + LINK + kmymoneysettings-static + + DEPENDENCIES + kmm-includes +) + + +##### reportstest (static) + +tde_add_library( reportstest STATIC_PIC AUTOMOC + SOURCES + reportstestcommon.cpp + pivottabletest.cpp + pivotgridtest.cpp + querytabletest.cpp + + LINK + reports-static + kmm_kdchart-shared + + DEPENDENCIES + kmm-includes + + EXCLUDE_FROM_ALL +) -- cgit v1.2.1