summaryrefslogtreecommitdiffstats
path: root/cmake/Modules/HandleFindGrantlee.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/Modules/HandleFindGrantlee.cmake')
-rw-r--r--cmake/Modules/HandleFindGrantlee.cmake15
1 files changed, 15 insertions, 0 deletions
diff --git a/cmake/Modules/HandleFindGrantlee.cmake b/cmake/Modules/HandleFindGrantlee.cmake
new file mode 100644
index 000000000..0abb763df
--- /dev/null
+++ b/cmake/Modules/HandleFindGrantlee.cmake
@@ -0,0 +1,15 @@
+if(NO_PRINTING)
+ message(STATUS "building without printing support")
+ add_definitions(-DNO_PRINTING)
+ set(GRANTLEE_LIBRARIES "")
+else()
+ if(LIBGRANTLEE_FROM_PKGCONFIG)
+ pkg_config_library(GRANTLEE libgrantlee REQUIRED)
+ set(GRANTLEE_LIBRARIES "")
+ else()
+ find_package(Grantlee5 REQUIRED)
+ set(GRANTLEE_LIBRARIES Grantlee5::Templates)
+ endif()
+ set(PRINTING_PKG PrintSupport)
+ set(PRINTING_LIB Qt5::PrintSupport)
+endif()