citrun

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

commit 02a34955113db420fe9151ba0c5a5d7628f40651
parent 7cd6a6f21651f2e98d1b9a1449eeeda13f904600
Author: Kyle Milz <kyle@0x30.net>
Date:   Sat, 14 Jan 2017 13:50:47 -0700

gl: give gl_testmain.cc a better name

Diffstat:
MJamfile | 4++--
Rgl_testmain.cc -> gltest.cc | 0
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Jamfile b/Jamfile @@ -45,7 +45,7 @@ Stringize demo_vshader_glsl.h : demo_vshader.glsl ; Stringize demo_fshader_glsl.h : demo_fshader.glsl ; ObjectDefines gl_font.cc : FONT_PATH=\\\"$(FONT_PATH)\\\" ; -ObjectC++Flags gl_main.cc gl_testmain.cc $(GL_SRCS) : $(GL_CFLAGS) ; +ObjectC++Flags gl_main.cc gltest.cc $(GL_SRCS) : $(GL_CFLAGS) ; LINKLIBS on citrun_gl citrun_gltest += -lm $(GL_LIBS) ; LinkLibraries citrun_gl citrun_gltest : gl_common libglyphy ; @@ -53,7 +53,7 @@ LinkLibraries citrun_gl citrun_gltest : gl_common libglyphy ; Main citrun_gl : gl_main.cc ; LINKLIBS on citrun_gltest += $(GLTEST_LIBS) ; -Main citrun_gltest : gl_testmain.cc ; +Main citrun_gltest : gltest.cc ; # # citrun_inst diff --git a/gl_testmain.cc b/gltest.cc