From 51649d5299b86da1b521864ebb3eff01d7179957 Mon Sep 17 00:00:00 2001 From: swaldhoer <34184299+swaldhoer@users.noreply.github.com> Date: Wed, 22 Apr 2020 15:46:40 +0200 Subject: [PATCH] remove lib from that example --- demos/c++/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/c++/wscript b/demos/c++/wscript index c3d4f483..3303a447 100644 --- a/demos/c++/wscript +++ b/demos/c++/wscript @@ -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')