Skip to content

Commit 96d4b53

Browse files
committed
added rpath for root
1 parent c59d6d2 commit 96d4b53

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

SConstruct

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
from init_env import init_environment
22

3+
import os
4+
ROOTSYS = os.environ['ROOTSYS']
5+
36
env = init_environment("qt5 clas12 clhep evio root geant4 xercesc mlibrary hipo")
4-
env.Append(CXXFLAGS = ' -std=c++17 ')
7+
env.Append(CXXFLAGS = ' -std=c++11 ')
8+
env.Append(RPATH = ROOTSYS + '/lib')
59

610
# library
711
lib_sources = Split("""src/banks.cc""")

0 commit comments

Comments
 (0)