citrun

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

commit a268a04dea61a1e99645238a07d1306f049d7aa3
parent 1fa8a7cf13dacfcbc57b3eaa318cc15b6a708295
Author: Kyle Milz <kyle@0x30.net>
Date:   Tue, 19 Sep 2017 01:24:29 -0600

jam: sort source files and shuffle var

Diffstat:
Mbin/Jamfile | 17++++++++---------
1 file changed, 8 insertions(+), 9 deletions(-)

diff --git a/bin/Jamfile b/bin/Jamfile @@ -44,16 +44,16 @@ Main citrun_inst : $(INST_SRCS) ; # citrun_gl, citrun_gltest # GL_SRCS = - gl_procfile.cc - gl_transunit.cc - process_dir.cc - gl_view.cc demo-atlas.cc - gl_buffer.cc - gl_font.cc demo-glstate.cc demo-shader.cc - matrix4x4.c ; + gl_buffer.cc + gl_font.cc + gl_procfile.cc + gl_transunit.cc + gl_view.cc + matrix4x4.c + process_dir.cc ; Library gl_common : $(GL_SRCS) ; @@ -64,11 +64,10 @@ Stringize demo_fshader_glsl.h : demo_fshader.glsl ; ObjectC++Flags gl_main.cc gltest.cc $(GL_SRCS) : $(GL_CFLAGS) ; LINKLIBS on citrun_gl citrun_gltest += -lm $(GL_LIBS) ; +LINKLIBS on citrun_gltest += $(GLTEST_LIBS) ; LinkLibraries citrun_gl citrun_gltest : gl_common libglyphy ; Main citrun_gl : gl_main.cc ; - -LINKLIBS on citrun_gltest += $(GLTEST_LIBS) ; Main citrun_gltest : gltest.cc ; # Link with the c++ compiler so that the matching c++ runtime library gets added