disable LightsDriver_Win32Parallel due to GPL-incompatibility

This commit is contained in:
Glenn Maynard
2005-01-06 17:53:51 +00:00
parent 5fc241d597
commit 328c43aba5
3 changed files with 6 additions and 20 deletions
+3 -11
View File
@@ -1,5 +1,5 @@
# Microsoft Developer Studio Project File - Name="StepMania" - Package Owner=<4> # Microsoft Developer Studio Project File - Name="StepMania" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 60000 # Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT ** # ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Application" 0x0101 # TARGTYPE "Win32 (x86) Application" 0x0101
@@ -59,7 +59,7 @@ LINK32=link.exe
# SUBTRACT LINK32 /verbose /profile /pdb:none /incremental:no /nodefaultlib # SUBTRACT LINK32 /verbose /profile /pdb:none /incremental:no /nodefaultlib
# Begin Special Build Tool # Begin Special Build Tool
IntDir=.\../Debug6 IntDir=.\../Debug6
TargetDir=\stepmania\stepmania\Program TargetDir=\temp\stepmania\Program
TargetName=StepMania-debug TargetName=StepMania-debug
SOURCE="$(InputPath)" SOURCE="$(InputPath)"
PreLink_Cmds=archutils\Win32\verinc cl /Zl /nologo /c verstub.cpp /Fo$(IntDir)\ PreLink_Cmds=archutils\Win32\verinc cl /Zl /nologo /c verstub.cpp /Fo$(IntDir)\
@@ -96,7 +96,7 @@ LINK32=link.exe
# SUBTRACT LINK32 /verbose /pdb:none /debug # SUBTRACT LINK32 /verbose /pdb:none /debug
# Begin Special Build Tool # Begin Special Build Tool
IntDir=.\../Release6 IntDir=.\../Release6
TargetDir=\stepmania\stepmania\Program TargetDir=\temp\stepmania\Program
TargetName=StepMania TargetName=StepMania
SOURCE="$(InputPath)" SOURCE="$(InputPath)"
PreLink_Cmds=archutils\Win32\verinc cl /Zl /nologo /c verstub.cpp /Fo$(IntDir)\ PreLink_Cmds=archutils\Win32\verinc cl /Zl /nologo /c verstub.cpp /Fo$(IntDir)\
@@ -1408,14 +1408,6 @@ SOURCE=.\arch\Lights\LightsDriver_SystemMessage.cpp
SOURCE=.\arch\Lights\LightsDriver_SystemMessage.h SOURCE=.\arch\Lights\LightsDriver_SystemMessage.h
# End Source File # End Source File
# Begin Source File
SOURCE=.\arch\Lights\LightsDriver_Win32Parallel.cpp
# End Source File
# Begin Source File
SOURCE=.\arch\Lights\LightsDriver_Win32Parallel.h
# End Source File
# End Group # End Group
# Begin Group "MemoryCard" # Begin Group "MemoryCard"
-6
View File
@@ -1171,12 +1171,6 @@ cl /Zl /nologo /c verstub.cpp /Fo&quot;$(IntDir)&quot;\
<File <File
RelativePath="arch\Lights\LightsDriver_SystemMessage.h"> RelativePath="arch\Lights\LightsDriver_SystemMessage.h">
</File> </File>
<File
RelativePath="arch\Lights\LightsDriver_Win32Parallel.cpp">
</File>
<File
RelativePath="arch\Lights\LightsDriver_Win32Parallel.h">
</File>
</Filter> </Filter>
<Filter <Filter
Name="MemoryCard" Name="MemoryCard"
+1 -1
View File
@@ -11,7 +11,7 @@ LightsDriver *MakeLightsDriver(CString driver)
LightsDriver *ret = NULL; LightsDriver *ret = NULL;
#ifdef _WINDOWS #ifdef _WINDOWS
if( !driver.CompareNoCase("Parallel") ) ret = new LightsDriver_Win32Parallel; // if( !driver.CompareNoCase("Parallel") ) ret = new LightsDriver_Win32Parallel;
#endif #endif
if( !driver.CompareNoCase("SystemMessage") ) ret = new LightsDriver_SystemMessage; if( !driver.CompareNoCase("SystemMessage") ) ret = new LightsDriver_SystemMessage;