From 71f0a7ea73661d7d208b4c944a35568c9e40b638 Mon Sep 17 00:00:00 2001 From: Vladislav Nepogodin Date: Sat, 31 Dec 2022 01:49:07 +0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20fix=20compilation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/CMakeLists.txt | 1 + tests/meson.build | 1 + 2 files changed, 2 insertions(+) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index ddab1a3..e66f8a9 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -1,6 +1,7 @@ list(APPEND test_SOURCES ${CMAKE_SOURCE_DIR}/src/config.cpp ${CMAKE_SOURCE_DIR}/src/utils.cpp + ${CMAKE_SOURCE_DIR}/src/cpu.cpp ${CMAKE_SOURCE_DIR}/src/initcpio.cpp ${CMAKE_SOURCE_DIR}/src/disk.cpp ${CMAKE_SOURCE_DIR}/src/drivers.cpp diff --git a/tests/meson.build b/tests/meson.build index cf6d310..afaab00 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -4,6 +4,7 @@ test_libreq = shared_library('test_libreq', sources : [ source_path + 'config.cpp', source_path + 'utils.cpp', + source_path + 'cpu.cpp', source_path + 'disk.cpp', source_path + 'drivers.cpp', source_path + 'widgets.cpp',