Skip to content

Commit

Permalink
Search paths also apply to IMP dependencies
Browse files Browse the repository at this point in the history
If we built IMP with a dependency (e.g. Boost)
not in the default search path, we can use the
same scons options to find it at test time.
  • Loading branch information
benmwebb committed Dec 7, 2023
1 parent 8224afb commit a74c288
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tools/nightly-tests/test-install/SConstruct
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
vars = Variables('config.py')
vars.Add('libpath', 'Directory/ies where IMP libraries are installed', None)
vars.Add('cpppath', 'Directory/ies where IMP headers are installed', None)
vars.Add('libpath',
'Directory/ies where IMP or dependency libraries are installed', None)
vars.Add('cpppath',
'Directory/ies where IMP or dependency headers are installed', None)
vars.Add('cxxflags', 'C++ compile flags', '')
vars.Add('linkflags', 'Link flags', '')
vars.Add('mock_config', 'Name of the mock config used to build IMP RPMs. '
Expand Down

0 comments on commit a74c288

Please sign in to comment.