Skip to content

Commit

Permalink
fixed global module deps
Browse files Browse the repository at this point in the history
  • Loading branch information
igorkorsukov committed Mar 27, 2024
1 parent c0bddd0 commit a4b505c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/engraving/compat/midi/pitchwheelrenderer.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include <unordered_map>
#include <functional>

#include "../types/types.h"
#include "../../types/types.h"

#include "event.h"

Expand Down
3 changes: 2 additions & 1 deletion src/engraving/compat/midi/velocitymap.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
#include <map>

#include "global/allocator.h"
#include "../types/types.h"

#include "../../types/types.h"

/**
\file
Expand Down
4 changes: 2 additions & 2 deletions src/framework/global/globalmodule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include "internal/process.h"
#include "internal/systeminfo.h"

#ifdef MU_BUILD_UI_MODULE
#ifdef MUE_BUILD_UI_MODULE
#include "internal/interactive.h"
#endif

Expand Down Expand Up @@ -88,7 +88,7 @@ void GlobalModule::registerExports()
ioc()->registerExport<IProcess>(moduleName(), new Process());
ioc()->registerExport<api::IApiRegister>(moduleName(), new api::ApiRegister());

#ifdef MU_BUILD_UI_MODULE
#ifdef MUE_BUILD_UI_MODULE
ioc()->registerExport<IInteractive>(moduleName(), new Interactive());
#endif
}
Expand Down
4 changes: 2 additions & 2 deletions tools/check_build_without_qt/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.14)
cmake_minimum_required(VERSION 3.16)

project(engraving_app LANGUAGES CXX)

Expand All @@ -8,7 +8,7 @@ set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

set(MU_ROOT ${CMAKE_CURRENT_LIST_DIR}/../..)
set(PROJECT_ROOT_DIR ${MU_ROOT})
set(MUSE_FRAMEWORK_PATH ${MU_ROOT})

set(CMAKE_MODULE_PATH
${MU_ROOT}/build
Expand Down

0 comments on commit a4b505c

Please sign in to comment.