From ed47c1557915bb2472f6959e723cd76155312a98 Mon Sep 17 00:00:00 2001 From: Chris Xiong Date: Mon, 6 Apr 2020 00:50:58 +0800 Subject: Add deduper (unfinished tool for finding image duplicates). --- deduper/libpuzzle/src/CMakeLists.txt | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 deduper/libpuzzle/src/CMakeLists.txt (limited to 'deduper/libpuzzle/src/CMakeLists.txt') diff --git a/deduper/libpuzzle/src/CMakeLists.txt b/deduper/libpuzzle/src/CMakeLists.txt new file mode 100644 index 0000000..634ef38 --- /dev/null +++ b/deduper/libpuzzle/src/CMakeLists.txt @@ -0,0 +1,21 @@ +project(puzzle C) + +include(FindPkgConfig) +pkg_search_module(gdlib REQUIRED gdlib) + +add_library(puzzle STATIC + globals.h + puzzle_common.h + puzzle_p.h + puzzle.h + compress.c + cvec.c + dvec.c + puzzle.c + tunables.c + vector_ops.c +) +target_include_directories(puzzle + PRIVATE + ${gdlib_INCLUDE_DIRS} +) -- cgit v1.2.3