This commit is contained in:
2025-07-18 20:54:34 +03:00
parent 168aa551c9
commit 27e1138441
4 changed files with 36 additions and 0 deletions

13
cmake/FindDPP.cmake Normal file
View File

@@ -0,0 +1,13 @@
find_path(
DPP_INCLUDE_DIR
NAMES dpp/dpp.h
HINTS ${DPP_ROOT_DIR})
find_library(
DPP_LIBRARIES
NAMES dpp "libdpp.a"
HINTS ${DPP_ROOT_DIR})
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(DPP DEFAULT_MSG DPP_LIBRARIES DPP_INCLUDE_DIR)