Skip to content

Commit

Permalink
src/test.c -> src/glut_test.c.
Browse files Browse the repository at this point in the history
  • Loading branch information
skaslev committed Feb 15, 2017
1 parent 1f18c5c commit b2957a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ else:
env.Append(CFLAGS=['-Wall', '-pedantic', '-O2'])
env.Append(CPPPATH='include')
env.SharedLibrary('lib/gl3w', 'src/gl3w.c')
o = env.Object('src/test', 'src/test.c')
env.Program('bin/test_static', [o, 'src/gl3w.c'], LIBS=libs)
env.Program('bin/test_shared', o, LIBS=libs + ['gl3w'],
o = env.Object('src/glut_test', 'src/glut_test.c')
env.Program('bin/glut_test_static', [o, 'src/gl3w.c'], LIBS=libs)
env.Program('bin/glut_test_shared', o, LIBS=libs + ['gl3w'],
LIBPATH='lib', RPATH=os.path.abspath('lib'))
File renamed without changes.

0 comments on commit b2957a7

Please sign in to comment.