From 46dec788067b2819721a3e7c8a6d2de6af133405 Mon Sep 17 00:00:00 2001 From: selsta Date: Sat, 8 May 2021 23:29:57 +0200 Subject: [PATCH] cmake: move external subdir before -Werror --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b2ae3413..fec289ad 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -58,6 +58,7 @@ if(NOT MANUAL_SUBMODULES) endif() add_subdirectory(monero) +add_subdirectory(external) set(CMAKE_AUTOMOC ON) set(CMAKE_AUTORCC ON) @@ -560,6 +561,5 @@ if (HIDAPI_FOUND OR LibUSB_COMPILE_TEST_PASSED) endif() endif() -add_subdirectory(external) add_subdirectory(translations) add_subdirectory(src)