Skip to content
Snippets Groups Projects
Commit af60ed25 authored by tho's avatar tho
Browse files

use boost_filesystem lib only for testing

parent 376497d0
No related branches found
No related tags found
No related merge requests found
......@@ -129,7 +129,7 @@ def configFilesOpts(target, source, env, for_signature):
env.Append(
CPPPATH = [ '#/include' ],
LIBS = [ 'iberty', '$BOOSTREGEXLIB', '$BOOSTFSLIB' ],
LIBS = [ 'iberty', '$BOOSTREGEXLIB' ],
DOXY_XREF_TYPES = [ 'bug', 'fixme', 'todo', 'idea' ],
DOXY_HTML_XSL = '#/doclib/html-munge.xsl',
ENV = { 'TODAY' : str(datetime.date.today()),
......
......@@ -34,7 +34,7 @@ def BoostUnitTests(env, target, objects, test_sources=None, LIBS = [], OBJECTS =
else:
test_sources = []
testEnv = env.Copy(**kw)
testEnv.Prepend(_LIBFLAGS = ' -Wl,-Bstatic -l$BOOSTTESTLIB -Wl,-Bdynamic ')
testEnv.Prepend(_LIBFLAGS = ' -Wl,-Bstatic -l$BOOSTTESTLIB -l$BOOSTFSLIB -Wl,-Bdynamic ')
testEnv.Prepend(LIBS = LIBS)
all_objects = []
if not objects:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment