Add files

This commit is contained in:
2025-12-30 02:54:25 +01:00
commit 71f3be080e
10 changed files with 367 additions and 0 deletions

7
cmake/FindDPP.cmake Normal file
View File

@@ -0,0 +1,7 @@
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)