Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Framework/DataHandling/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -684,6 +684,7 @@ target_link_libraries(
Mantid::Kernel
Mantid::Indexing
Mantid::Parallel
Mantid::Muon
PRIVATE Mantid::Json Boost::filesystem Mantid::NexusGeometry
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include "MantidAPI/Algorithm.h"
#include "MantidAPI/MatrixWorkspace.h"
#include "MantidDataHandling/DllConfig.h"
#include "MantidNexus/MuonNexusReader.h"
#include "MantidMuon/MuonNexusReader.h"

namespace Mantid {

Expand Down
2 changes: 1 addition & 1 deletion Framework/DataHandling/src/LoadInstrumentFromNexus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include "MantidGeometry/Instrument/Component.h"
#include "MantidGeometry/Instrument/Detector.h"
#include "MantidKernel/ConfigService.h"
#include "MantidNexus/MuonNexusReader.h"
#include "MantidMuon/MuonNexusReader.h"

#include <fstream>

Expand Down
6 changes: 5 additions & 1 deletion Framework/Muon/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ set(SRC_FILES
src/PlotAsymmetryByLogValue.cpp
src/RemoveExpDecay.cpp
src/RRFMuon.cpp
src/LegacyNexusClasses.cpp
src/MuonNexusReader.cpp
)

set(INC_FILES
Expand Down Expand Up @@ -56,6 +58,8 @@ set(INC_FILES
inc/MantidMuon/PlotAsymmetryByLogValue.h
inc/MantidMuon/RemoveExpDecay.h
inc/MantidMuon/RRFMuon.h
inc/MantidMuon/LegacyNexusClasses.h
inc/MantidMuon/MuonNexusReader.h
)

set(TEST_FILES
Expand Down Expand Up @@ -115,7 +119,7 @@ set_property(TARGET Muon PROPERTY FOLDER "MantidFramework")
target_link_libraries(
Muon
PUBLIC Mantid::API Mantid::Kernel Mantid::Geometry
PRIVATE Mantid::DataObjects Mantid::Indexing Mantid::Nexus
PRIVATE Mantid::DataObjects Mantid::Indexing
)
# Add the unit tests directory
add_subdirectory(test)
Expand Down
Loading