From: Benjamin P. Jung Date: Tue, 16 Nov 2004 10:01:30 +0000 (+0000) Subject: Fixed a few typos. The script still doesn't work. X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=1f6262e296474e20843dff17a35312a735677212;p=supertux.git Fixed a few typos. The script still doesn't work. SVN-Revision: 2088 --- diff --git a/SConstruct b/SConstruct index 024bec286..557818410 100644 --- a/SConstruct +++ b/SConstruct @@ -62,15 +62,14 @@ supertux_src=[ 'src/resources.cpp', 'src/scene.cpp', 'src/sector.cpp', - 'src/serializable.cpp', - 'special.cpp', - 'statistics.cpp', - 'supertux.cpp', - 'tile.cpp' - 'tile_manager.cpp', - 'tilemap.cpp', - 'title.cpp', - 'worldmap.cpp' + 'src/special.cpp', + 'src/statistics.cpp', + 'src/supertux.cpp', + 'src/tile.cpp' + 'src/tile_manager.cpp', + 'src/tilemap.cpp', + 'src/title.cpp', + 'src/worldmap.cpp' ] Library( @@ -82,6 +81,6 @@ Library( Program( target="src/supertux", source=supertux_src, - CPPPATH=SDL_INCLUDE_PATH, + CPPPATH=[SDL_INCLUDE_PATH, 'lib', '.'], LIBS='lib/libsupertux' )