From 990acbb17db9e0c05b2ec701a054a47284fc72d9 Mon Sep 17 00:00:00 2001 From: degasus Date: Wed, 29 Apr 2020 12:55:24 +0200 Subject: [PATCH] Externals: Fix ed25519 include path. --- CMakeLists.txt | 1 + Source/Core/UpdaterCommon/UpdaterCommon.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 47f99edf90..11a272367c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -649,6 +649,7 @@ add_subdirectory(Externals/FreeSurround) if (APPLE OR WIN32) message(STATUS "Using ed25519 from Externals") add_subdirectory(Externals/ed25519) + include_directories(Externals/ed25519) endif() # Using static soundtouch from Externals diff --git a/Source/Core/UpdaterCommon/UpdaterCommon.cpp b/Source/Core/UpdaterCommon/UpdaterCommon.cpp index 89a963609c..dc7318827a 100644 --- a/Source/Core/UpdaterCommon/UpdaterCommon.cpp +++ b/Source/Core/UpdaterCommon/UpdaterCommon.cpp @@ -8,7 +8,7 @@ #include #include -#include +#include #include #include #include