From 5e29c84a156f8493cab8965b29976cb4b36a9927 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Fri, 3 Apr 2026 17:02:09 +0900 Subject: [PATCH] Move third_party headers into include/ --- CMakeLists.txt | 5 +---- {third_party/halfsiphash => include}/halfsiphash.h | 0 {third_party/msgpackpp => include}/msgpackpp.h | 0 3 files changed, 1 insertion(+), 4 deletions(-) rename {third_party/halfsiphash => include}/halfsiphash.h (100%) rename {third_party/msgpackpp => include}/msgpackpp.h (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4e6e640..32588a7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,10 +13,7 @@ add_executable(picomap picomap.cpp ) -target_include_directories(picomap PRIVATE - third_party/msgpackpp - third_party/halfsiphash -) +target_include_directories(picomap PRIVATE include) pico_enable_stdio_usb(picomap 1) pico_enable_stdio_uart(picomap 0) diff --git a/third_party/halfsiphash/halfsiphash.h b/include/halfsiphash.h similarity index 100% rename from third_party/halfsiphash/halfsiphash.h rename to include/halfsiphash.h diff --git a/third_party/msgpackpp/msgpackpp.h b/include/msgpackpp.h similarity index 100% rename from third_party/msgpackpp/msgpackpp.h rename to include/msgpackpp.h