mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
19 lines
420 B
CMake
19 lines
420 B
CMake
![]() |
|
||
|
option(
|
||
|
OKULAR_FORCE_DRM
|
||
|
"Forces okular to check for DRM to decide if you can copy/print protected pdf. (default=no)"
|
||
|
OFF
|
||
|
)
|
||
|
if (OKULAR_FORCE_DRM)
|
||
|
set(_OKULAR_FORCE_DRM 1)
|
||
|
else (OKULAR_FORCE_DRM)
|
||
|
set(_OKULAR_FORCE_DRM 0)
|
||
|
endif (OKULAR_FORCE_DRM)
|
||
|
|
||
|
# at the end, output the configuration
|
||
|
configure_file(
|
||
|
${CMAKE_CURRENT_SOURCE_DIR}/config-okular.h.cmake
|
||
|
${CMAKE_CURRENT_BINARY_DIR}/config-okular.h
|
||
|
)
|
||
|
|