From b84d673aaebb3e7eb0e8eb01820b40b8f3bb498b Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Fri, 4 Oct 2019 18:57:59 +0200 Subject: [PATCH] meson: reorder lib and common subdir So that lib can depend on the new library from common. --- meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meson.build b/meson.build index 881d28e..80b244a 100644 --- a/meson.build +++ b/meson.build @@ -141,12 +141,12 @@ config_h = configure_file( ) config_h_dir = include_directories('.') -# Library is always required -subdir('lib') - # common lib is always required subdir('common') +# Library is always required +subdir('lib') + # Utilities are always required except when having both 64 and 32 bit versions # of libgamemode installed if with_util == true