10 Commits

Author SHA1 Message Date
Wolfgang Stöggl
d8fdd5256b [TTALib] Get rid of compiler warnings
Fixes the following compiler warnings:
- Win32, x64:
  cl : Command line warning D9035: option 'Ze' has been deprecated
  and will be removed in a future release
- x64:
  cl : Command line warning D9002: ignoring unknown option '/arch:SSE'
- Background info:
  The /Ze option is deprecated because its behavior is on by default.
    https://docs.microsoft.com/en-us/visualstudio/msbuild/cl-task
  SSE is only relevant for x86
    https://docs.microsoft.com/en-us/cpp/build/reference/arch-x86
2021-02-04 20:18:09 +01:00
Wolfgang Stöggl
6fcd5b92d7 Fix further issues on case sensitive file systems
Further issues when building CUETools on a case sensitive filesystem or
folder were found in CUETools.Codecs.TTA and ttalib-1.1

- Remove precompiled headers from:
    CUETools.Codecs.TTA.vcxproj
    TTALib.vcxproj
  This fixes case sensitivity issues coming from different spellings of
  stdafx (stdafx.cpp, Stdafx.cpp; stdafx.h, Stdafx.h). The stdafx.h
  header files were empty in both cases, so remove precompiled headers
  completely.
  Remark: The file TTALib.vcproj was unused and therefore removed.
          TTALib.vcxproj is used by CUETools and gets updated.
- Use lowercase ttalib-1.1 for includes in CUETools.Codecs.TTA.cpp,
  because the name of the sub-directory, which contains the TTALib
  files is lowercase:
    TTALib-1.1->ttalib-1.1
- Fix lower/uppercase spelling of included headers in files of
  ttalib-1.1 according to the spelling of the filenames:
    bitreader.h->BitReader.h
    ttareader.h->TTAReader.h
    ttawriter.h->TTAWriter.h
  Rename the file ttacommon.h for conformity and update the includes:
    ttacommon.h->TTACommon.h
- Summary of changes to files (rename, delete):
    deleted: CUETools.Codecs.TTA/Stdafx.cpp
    deleted: CUETools.Codecs.TTA/Stdafx.h
    deleted: ttalib-1.1/Stdafx.cpp
    deleted: ttalib-1.1/Stdafx.h
    renamed: ttalib-1.1/ttacommon.h -> ttalib-1.1/TTACommon.h
    deleted: ttalib-1.1/TTALib.vcproj
2020-07-05 06:08:35 +02:00
Grigory Chudov
16fccfe5c9 Code cleanup; Reader classes renamed to Decoders, Writers to Encoders, every Decoder must have a corresponding Settings class now just like Encoders. UserDefinedEncoders renamed to CommandLineEncoders, etc. 2018-03-23 19:26:26 -04:00
Grigory Chudov
a4565dbd30 Build system cleanup. Platform dependent plugins moved to "plugins" subdirectories. 2018-03-11 18:42:41 -04:00
Grigory Chudov
929b7de944 Updated the build system, now using .NET Framework v4.0 for most things 2018-03-11 17:07:48 -04:00
Grigory Chudov
b6fe9968a1 Upgraade solution to Visual Studio 2017 2018-02-19 12:31:02 -05:00
chudov
9560fcb80d Projects for VS2010 2011-10-23 20:34:39 +00:00
chudov
f23ea0811b Now using Visual Studio 2008 2010-02-08 08:36:26 +00:00
chudov
399573c1be 1.9.4... too many small changes to comment 2009-01-17 04:09:38 +00:00
chudov
1a25107348 can be of use later 2009-01-15 23:15:04 +00:00