remove lib from that example

This commit is contained in:
swaldhoer 2020-04-22 15:46:40 +02:00
parent 371d4410a5
commit 51649d5299
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ def build(bld):
bld.shlib(source='a.cpp', target='mylib3')
bld.program(source='main.cpp', target='app', use='mylib')
bld.stlib(target='foo', source='b.cpp')
bld.program(source='c.cpp', target='file-include', include_files='file-include/inc-file/header.h', use='mylib')
bld.program(source='c.cpp', target='file-include', include_files='file-include/inc-file/header.h')
# just a test to check if the .c is compiled as c++ when no c compiler is found
bld.program(features='cxx cxxprogram', source='main.c', target='app2')