From b67f6dc2316ecee4c6aacb8baabc42c497b102d6 Mon Sep 17 00:00:00 2001 From: Luke Street Date: Mon, 12 Apr 2021 22:05:07 -0400 Subject: [PATCH] Move utf8proc.h to include/athena --- CMakeLists.txt | 2 +- include/{ => athena}/utf8proc.h | 0 src/athena/Utility.cpp | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename include/{ => athena}/utf8proc.h (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8c459da..bc7c61c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -186,7 +186,7 @@ add_library(athena-core include/athena/YAMLDocReader.hpp include/athena/YAMLDocWriter.hpp include/yaml.h - include/utf8proc.h + include/athena/utf8proc.h ) if(WIN32) target_sources(athena-core PRIVATE diff --git a/include/utf8proc.h b/include/athena/utf8proc.h similarity index 100% rename from include/utf8proc.h rename to include/athena/utf8proc.h diff --git a/src/athena/Utility.cpp b/src/athena/Utility.cpp index ef5b278..c4ac85d 100644 --- a/src/athena/Utility.cpp +++ b/src/athena/Utility.cpp @@ -11,7 +11,7 @@ #include #include -#include "utf8proc.h" +#include "athena/utf8proc.h" #ifdef _MSC_VER #include