From d098f09700e6ee7321a6566b567a5017c38df8b4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jean-Philippe=20Bruy=C3=A8re?= Date: Fri, 18 Feb 2022 05:00:57 +0100 Subject: [PATCH] add svg and recording options in cmake resume --- CMakeLists.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 44b8d18..8bda960 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -468,6 +468,16 @@ IF (VKVG_BUILD_TESTS) ELSE () MESSAGE(STATUS "Build tests\t\t= false.") ENDIF () +IF (VKVG_SVG) + MESSAGE(STATUS "SVG rendering\t= vkvg-svg (experimental).") +ELSE () + MESSAGE(STATUS "SVG rendering\t= nanosvg") +ENDIF () +IF (VKVG_RECORDING) + MESSAGE(STATUS "Recording features\t= true (experimental).") +ELSE () + MESSAGE(STATUS "Recording features\t= false.") +ENDIF () IF (VKVG_DBG_STATS) MESSAGE(STATUS "Debug statistics\t= enabled.") ELSE () -- 2.47.3