Update of /cvsroot/opal/opal/samples/simple
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2841/samples/simple
Modified Files:
SConstruct main.cpp
Log Message:
Fixed 'simple' sample app's SConstruct to make it install to the right place. Also, in the same app, changed the SDL.h include to look in
<SDL/SDL.h>, not <sdl/SDL.h>.
Index: SConstruct
===================================================================
RCS file: /cvsroot/opal/opal/samples/simple/SConstruct,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** SConstruct 25 Jun 2005 06:45:41 -0000 1.2
--- SConstruct 27 Jul 2005 06:30:03 -0000 1.3
***************
*** 32,36 ****
# Install the executable.
! inst = env.Install('../bin/simple', exe)
# Tell scons to build and install the executable by default.
--- 32,36 ----
# Install the executable.
! inst = env.Install('../bin/release', exe)
# Tell scons to build and install the executable by default.
Index: main.cpp
===================================================================
RCS file: /cvsroot/opal/opal/samples/simple/main.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** main.cpp 25 Jun 2005 06:45:41 -0000 1.2
--- main.cpp 27 Jul 2005 06:30:03 -0000 1.3
***************
*** 47,51 ****
#include <opal/opal.h>
! #include <sdl/SDL.h>
#include "Timer.h"
--- 47,51 ----
#include <opal/opal.h>
! #include <SDL/SDL.h>
#include "Timer.h"
|