aboutsummaryrefslogtreecommitdiff
path: root/dists/msvc7/scummvm.vcproj
AgeCommit message (Collapse)Author
2009-07-09- Rewrote and greatly simplified the MSVC8 and MSVC9 project files so that ↵Filippos Karapetis
they use common compilation properties, based on patch #2774908. These common properties make it much simpler to change options and compilation defines globally, similar to how GCC *.mk files do. Also, this fixes problems where an ENABLE_* define was set for one project file but not another (like the situation in revisions 42257 and 42259). It's now much easier to construct a tool which will create the project files dynamically. - Dropped support for MSVC7 and MSVC7.1 for now (as they don't support common compilation properties and it's no longer easy to construct them from the MSVC8 ones) - hopefully, they will return in the future, once we got a more sophisticated tool to create them - Simplified the MSVC9 <-> MSVC8 conversion tools a bit svn-id: r42288
2009-07-08Also added the ENABLE_IHNM and ENABLE_SAGA2 preprocessor definitions to the ↵Filippos Karapetis
scummvm project files, not only the saga project files svn-id: r42258
2009-07-08Updated the MSVC project files of the scummvm project (added graphics/sjis.*)Filippos Karapetis
svn-id: r42256
2009-06-15Added the missing pixelformat.h fileFilippos Karapetis
svn-id: r41537
2009-05-21Renamed the DXA, SMK and FLIC video decoders to reflect the fact that ↵Filippos Karapetis
they're decoders, not players svn-id: r40759
2009-05-21Updated the MSVC project files with the latest changes to file structureFilippos Karapetis
svn-id: r40756
2009-05-11Added the new hardwarekeys.cpp filePaul Gilbert
svn-id: r40448
2009-05-08Fixed compilation under all versions of MSVC (renamed ↵Filippos Karapetis
sound/softsynth/opl/opl.cpp and .h into opl_impl.h and opl_inc.h respectively) svn-id: r40379
2009-05-06- Updated the MSVC project files of ScummVM (added the new Adlib player, as ↵Filippos Karapetis
well as vkeyb and keymapper) - Synced the GOB project files - Synced the SCUMM project files svn-id: r40349
2009-03-16Updated the MSVC project files of the tinsel, sci and scummvm projects for ↵Filippos Karapetis
the file changes which occurred in commits #39430 and #39439 svn-id: r39440
2009-03-15Updated MSVC project files for commit #39416 (moved vag.* from ↵Filippos Karapetis
engines/sword1/ to sound/) svn-id: r39423
2009-03-10Updated the MSVC project files of the SCI engine and ScummVMFilippos Karapetis
svn-id: r39294
2009-03-04Updated the MSVC project files for the SCI engine and the ScummVM common ↵Filippos Karapetis
code with the latest changes svn-id: r39124
2009-02-22Updated and synced all MSVC project filesFilippos Karapetis
svn-id: r38771
2009-02-21update older msvcPaweł Kołodziejski
svn-id: r38739
2009-02-20Correct typo in project files, which caused SCI engine to be disabled.Travis Howell
svn-id: r38578
2009-02-16SyncFilippos Karapetis
svn-id: r38363
2009-02-14Updated the MSVC project files for commit #36007 (removed ↵Filippos Karapetis
/backends/saves/compressed/*) svn-id: r38182
2009-02-01Updated the MSVC project files of the scummvm project with the latest ↵Filippos Karapetis
changes to the files svn-id: r36190
2009-01-17Merged gui/ThemeData.cpp into ThemeEngine.cppMax Horn
svn-id: r35881
2009-01-07Updated the MSVC project files for the latest changes to the video playing codeFilippos Karapetis
svn-id: r35773
2009-01-02Updated the MSVC project files for commit #35668Filippos Karapetis
svn-id: r35671
2008-12-31Removed Graphics::ImageMan. Nothing uses itMax Horn
svn-id: r35638
2008-12-31Preliminary Shorten audio support for SAGA 2 games. It's still very wrong ↵Filippos Karapetis
and needs further work, but it's a start svn-id: r35626
2008-12-24Updated the MSVC project files for commit #35526Filippos Karapetis
svn-id: r35529
2008-12-21Updated the MSVC project files for commit #35470Filippos Karapetis
svn-id: r35471
2008-12-14Updated the MSVC project files (added smk_player.cpp/.h)Filippos Karapetis
svn-id: r35367
2008-11-17Fix compilation of Tucker-engine under MSVC by adding missing flic_player.h ↵Kari Salminen
and flic_player.cpp to the project files. svn-id: r35108
2008-11-16Added MSVC projects for the new groovie engine and enabled the engineFilippos Karapetis
svn-id: r35097
2008-11-11Updated MSVC project files for commit #35002Filippos Karapetis
svn-id: r35010
2008-11-10Enable the tucker engineFilippos Karapetis
svn-id: r34998
2008-11-10Added MSVC project files for the new tucker engineFilippos Karapetis
svn-id: r34996
2008-11-10Updated the MSVC project files for commit #34983Filippos Karapetis
svn-id: r34987
2008-10-12The MSVC8 -> MSVC 7/7.1 conversion tool now handles both cases of version ↵Filippos Karapetis
numbers (with . and ,) - depending on the system's localization settings. Updated the scummvm.vcproj files Fixes bug #2159813 - "BUILD: scummvm.vcproj fails to build in msvc7/msvc71" svn-id: r34778
2008-10-11Synced the rest of the MSVC project files (MSVC7, 7.1 and 8) with the latest ↵Filippos Karapetis
changes to the GUI from the GSoC branch svn-id: r34768
2008-09-19Updated MSVC project files with the latest changes (moved base/game.* to ↵Filippos Karapetis
engines/game.*) svn-id: r34602
2008-09-08Some more unification of options:Filippos Karapetis
- AdditionalIncludeDirectories is set to "../../;../../engines" - InlineFunctionExpansion is set to "0" for debug and "2" for release builds - DisableLanguageExtensions is set to "false" (disabling language extensions leads to some very weird errors) - Detect64BitPortabilityProblems is set to "false", as setting it to "true" throws loads of warnings too (mainly related to strlen, when trying to store its result in an integer) svn-id: r34448
2008-09-08Changed WarnAsError to be true across all engines, in both debug and release ↵Filippos Karapetis
builds svn-id: r34446
2008-09-06Added missing common/archive.*Filippos Karapetis
svn-id: r34381
2008-09-03Updated MSVC project files for commit #34303Filippos Karapetis
svn-id: r34306
2008-09-02Enabled the new optimizations for older versions of MSVC as wellFilippos Karapetis
Also, included the tinsel engine library for the release version as well (fixes compilation of the release version) svn-id: r34274
2008-09-02Changed the MSVC optimization settings for the release version of all ↵Filippos Karapetis
current engines, according to the settings proposed in patch #1877032 - "better optimization settings for msvc9". SSE has NOT been enabled by default though, as it's not available under 64-bit platforms. Updated the MSVC 8 -> MSVC 7/7.1 batch file accordingly svn-id: r34270
2008-09-02Added new files to the MSVC projects (engines/dialogs.* and common/queue.h)Filippos Karapetis
svn-id: r34269
2008-09-01Updated all MSVC project files with the latest changes to the code (gob and ↵Filippos Karapetis
parallaction engines and the file system) svn-id: r34235
2008-08-20Renamed graphics/scaler/thumbnail.cpp to thumbnail_intern.cpp. Fixes ↵Kari Salminen
compiling under MSVC. svn-id: r34063
2008-08-20Added graphics/thumbnail.cpp and graphics/thumbnail.h to MSVC project files.Kari Salminen
svn-id: r34059
2008-07-23Enable Tinsel also for MSVC 7 & 7.1 & 9 in addition to MSVC 8.Kari Salminen
svn-id: r33239
2008-06-30Updated MSVC project files for commit #32828Filippos Karapetis
svn-id: r32849
2008-06-14Updated MS Visual Studio project files for MusicPlugin.Vicent Marti
svn-id: r32701
2008-06-13Renamed MIDI plugins to Music pluginsJordi Vilalta Prat
svn-id: r32693