Skip to content

Commit fa25c76

Browse files
committed
Fix include logic
1 parent 8064986 commit fa25c76

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CMakeLists.txt

+6
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,14 @@ include(HKPackageBuilder)
1414
hkbuilder_prepare_project()
1515
hk_check_dependencies()
1616

17+
#add common functions directory
18+
include_directories(src BEFORE)
1719
add_subdirectory(src)
1820

21+
#add ABC tools
22+
# This should really be improved to only be included for the inheriting tools, rather than all tools
23+
include_directories(HKGFileWriterBase BEFORE)
24+
1925
# Add your tools here
2026
hk_add_tool(WCSim_exe)
2127
hk_add_tool(HKG4TrackingAction)

HKG4PhysicsList/HKG4PhysicsList.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include "HKG4PhysicsList.h"
22

3-
#include "../src/Utilities.h"
3+
#include "Utilities.h"
44

55
#include "WCSimRunAction.hh"
66

HKGFileWriterRootWCSim/HKGFileWriterRootWCSim.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include "TTree.h"
88
#include "TFile.h"
99

10-
#include "../HKGFileWriterBase/HKGFileWriterBase.h"
10+
#include "HKGFileWriterBase.h"
1111

1212
#include <DataModel.h>
1313
#include "Tool.h"

0 commit comments

Comments
 (0)