From 0cbefb77b7e02e25d76ea9a42fc6f47217090ab3 Mon Sep 17 00:00:00 2001 From: Wiebe van Breukelen Date: Thu, 14 Aug 2025 09:34:27 +0200 Subject: [PATCH] Fix CMake interface include paths (#14) * Fixed include path * Formatting * Remove lookup_constexpr.hpp --- include/trigdx/trigdx.hpp | 2 +- src/CMakeLists.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/trigdx/trigdx.hpp b/include/trigdx/trigdx.hpp index f87abf2..ef5ee05 100644 --- a/include/trigdx/trigdx.hpp +++ b/include/trigdx/trigdx.hpp @@ -2,9 +2,9 @@ #include -#include #include #include +#include #if defined(TRIGDX_USE_MKL) #include diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 933a944..f7eb2f2 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -35,5 +35,5 @@ if(TRIGDX_USE_XSIMD) endif() target_include_directories( - trigdx INTERFACE $ - $) + trigdx INTERFACE $ + $)