citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 504965f8d21b584ee80e87bb4cc9cf609408e7df
parent 165584608fdc0e749f35e67cb7fde2294cd6a9e7
Author: Kyle Milz <kyle@windows.krwm.net>
Date:   Sun,  1 Jan 2017 20:46:18 -0800

src: copy citrun_inst.exe to cl.exe and link.exe

Diffstat:
Msrc/Jamfile | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/Jamfile b/src/Jamfile @@ -75,6 +75,14 @@ LINKLIBS on citrun_inst += $(INST_LIBS) ; Main citrun_inst : $(INST_SRCS) ; +if $(NT) { + for i in cl.exe link.exe { + MakeLocate $(i) : $(LOCATE_SOURCE) ; + File $(i) : citrun_inst.exe ; + Clean clean : $(i) ; + } +} + # Link with the c++ compiler so that the matching c++ runtime library gets added # automatically. LINK on citrun_inst citrun_gl citrun_gltest = $(C++) ;