summaryrefslogtreecommitdiffstats
path: root/cmake/Modules/HandleFindGrantlee.cmake
blob: ab0faf4911f6d8879ec1aeceaf6c531b89be6ee3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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()
	LIST(APPEND QT_EXTRA_COMPONENTS PrintSupport)
endif()