Remove ScreenTest; set up compiling libresample using SCons

This commit is contained in:
Ben Anderson
2006-01-31 00:52:42 +00:00
parent a3615bf11a
commit 168eb2a8f8
3 changed files with 5 additions and 3 deletions
+2 -2
View File
@@ -178,7 +178,6 @@ Screens = [
"ScreenSongOptions.cpp",
"ScreenSplash.cpp",
"ScreenStage.cpp",
"ScreenTest.cpp",
"ScreenTestFonts.cpp",
"ScreenTestInput.cpp",
"ScreenTestLights.cpp",
@@ -634,7 +633,8 @@ cryptopp = [
env = conf.Finish()
env.Command("libresample/libresample.a", "", "cd src/libresample && ./configure && make")
env.Append(CPPFLAGS='-g2')
SConscript('libresample/SConscript')
env.Program('stepmania',
Screens + DataStructures + FileTypes + StepMania + Arch +\
ActorsInGameplayAndMenus + ActorsInMenus + ActorsInGameplay + Rage +\
+2
View File
@@ -0,0 +1,2 @@
# This is not binary, damnit! Stupid Eclipse.
Library('resample', ['src/hackedresamplesubs.c', 'src/filterkit.c', 'src/resample.c', 'src/resamplesubs.c'], CPPFLAGS="-DNO_AUTOCONF")
@@ -14,7 +14,7 @@
#ifndef __RESAMPLE_DEFS__
#define __RESAMPLE_DEFS__
#if !defined(WIN32) && !defined(__CYGWIN__)
#if !defined(WIN32) && !defined(__CYGWIN__) && !defined(NO_AUTOCONF)
#include "config.h"
#endif