Peter Kohaut
6bb953e25b
CREATE_PROJECT: Support for a different target build directory in CMake
2017-03-10 00:21:14 +01:00
Peter Kohaut
65ef0c8ff8
CREATE_PROJECT: Fixed solution version for Visual Studio 2015
2017-03-08 22:43:47 +01:00
Peter Kohaut
27368cc845
CREATE_PROJECT: Add support for Visual Studio 2017
2017-03-08 22:30:53 +01:00
Thierry Crozat
cd58664b9e
CREATE_PROJECT: Add data files for access, cryo and macventure in Xcode projects
2017-02-12 20:20:28 +00:00
Filippos Karapetis
a938942f03
CREATE_PROJECT: Also silence warning 4100 in MSVC
...
Some formal function parameters are not used in all overloaded
functions, which results in loads of 4100 warnings when building
CREATE_PROJECT. This change silences warning 4100 together with
the others
2017-02-10 00:39:43 +02:00
Thierry Crozat
2f4d14aba5
CREATE_PROJECT: Disable engines for which required features are not available
2017-02-06 23:18:02 +00:00
Thierry Crozat
14dcdb6103
CREATE_PROJECT: Add highres feature
2017-02-06 22:35:52 +00:00
Thierry Crozat
5da09383dc
CREATE_PROJECT: Fix linking with Xcode when not disabling curl
2017-02-06 21:51:40 +00:00
Paul Gilbert
bbef10c068
CREATE_PROJECT: Fix Visual Studio linking problems after Munt merge
2016-12-17 15:12:52 -05:00
Paul Gilbert
990bd641ae
CREATE_PROJECT: Fix MSVC project creation with curl or SDL_Net enabled
2016-10-20 21:00:32 -04:00
Littleboy
42d8a82c43
CREATE_PROJECT: Do not copy into non-existent msvc8 dist folder
2016-09-23 22:38:17 -04:00
Littleboy
e34960f633
CREATE_PROJECT: Add SCUMM_64BITS to ScummVM_Global64.props ( fixes #9566 )
2016-09-23 22:34:47 -04:00
Bastien Bouclet
7155f14310
CREATE_PROJECT: Use SDL_Net2 when building with SDL2 for cmake
2016-09-15 12:44:57 +02:00
Thierry Crozat
1f2a50bcd3
CLOUD: Move openUrl to OSystem
2016-09-10 01:12:42 +01:00
Eugene Sandulenko
27c0ddd807
Merge pull request #822 from csnover/apple-network-browser
...
CREATE_PROJECT: Fix networking backend file targets in Xcode
2016-09-04 10:47:56 +02:00
Bastien Bouclet
cda41d2fb4
CREATE_PROJECT: Add CURL and SDL_net to the list of libraries for cmake generation
2016-09-03 07:58:35 +02:00
Colin Snover
2ad082aeb7
CREATE_PROJECT: Fix networking backend file targets in Xcode
2016-09-01 21:09:03 -05:00
Alexander Tkachev
fade746f37
CLOUD: Add USE_CLOUD feature
...
Adds USE_CLOUD in both configure and create_project.
2016-08-24 16:07:55 +06:00
Filippos Karapetis
c69eb82527
CREATE_PROJECT: Switch SDL backend to SDL2 by default
...
This adapts create_project with the changes in de04a68c06
2016-08-22 13:09:49 +03:00
Vincent Bénony
9cc3abc0fb
CREATE_PROJECT: Fix Xcode project
2016-08-18 17:00:20 +02:00
Colin Snover
97b3437f49
CREATE_PROJECT: Fix warning flags in Xcode generator
...
Sign comparison should be on to match other compilers, and
multichar warnings should be disabled for all platforms, not just
iOS.
2016-08-13 16:34:28 -05:00
Paul Gilbert
add058a8b8
CREATE_PROJECT: Add warning C4373 to ignore list for SCI engine
2016-08-12 20:18:20 -04:00
Colin Snover
6e41f3673f
CREATE_PROJECT: Fix Xcode generator macOS target
2016-08-05 10:57:57 -05:00
Bastien Bouclet
15cc188abe
CREATE_PROJECT: Fix MSVC compilation
...
Fixes #7173 .
2016-07-24 14:18:10 +02:00
Eugene Sandulenko
afcf31f194
CREATE_PROJECT: Fix MSVC project files
2016-07-24 06:43:04 +03:00
Eugene Sandulenko
11a7598aa8
CREATE_PROJECT: Hopewfully fix MSVC compilation
2016-07-24 06:31:11 +03:00
Bastien Bouclet
e1c186e85f
DEVTOOLS: Fix create_project build with MinGW64
2016-07-07 18:47:18 +02:00
Bastien Bouclet
6a3e07dca5
DEVTOOLS: Add a CMake project generator to create_project
...
Also-By: Joel Teichroeb <joel@teichroeb.net>
Also-By: Einar Johan Trøan Sømåen <einarjohants@gmail.com>
2016-07-07 18:47:18 +02:00
Filippos Karapetis
8b3a08047c
UPDATES: Add support for WinSparkle
2016-05-22 18:52:33 +03:00
Filippos Karapetis
e17d1a1482
CREATE_PROJECT: Whitespace fixes
2016-05-22 16:28:40 +03:00
Johannes Schickel
dfaf97dda7
DEVTOOLS: Improve SDL2 support in create_project.
...
This adapts MSBuild and XCode project generators to output project files which
can be used to build the SDL backend with SDL2 easily.
2016-03-24 01:26:05 +01:00
Johannes Schickel
567a6b4712
DEVTOOLS: Slight formatting fix.
2016-03-24 01:26:05 +01:00
Johannes Schickel
4a781737c1
OPENGL: Resolve OpenGL functions on run-time.
...
Formerly we relied on static linkage. However, in the presense of modern
OpenGL (ES) implementations it is not easily identifable which library to link
against. For example, on Linux amd64 with nVidia drivers and SDL2 setup to
create a GLES 1.1 context one would need to link against libGL.so. However,
traditionally GLES 1.1 required to link against libGLESv1_CM.so. To prevent a
huge mess we simply resolve the OpenGL functions on run-time now and stop
linking against a static library (in most cases).
GLES support needs to be enabled manually on configure time for now.
Tizen changes have NOT been tested.
2016-03-16 20:29:24 +01:00
Johannes Schickel
edfc84b67a
DEVTOOLS: Use LTCG for Release configurations in MSBuild project files.
...
Silences linker output that LTCG is used anyway because whole program
optimization is enabled for these configurations.
2016-03-13 20:41:40 +01:00
Johannes Schickel
66a74cf3f3
DEVTOOLS: Check configuration and architecture specific directories for MSBuild.
2016-03-09 22:03:47 +01:00
Johannes Schickel
7127fadc96
DEVTOOLS: Use DLL runtime for MSBuild output.
2016-03-09 22:03:47 +01:00
Johannes Schickel
5510fdc7e4
DEVTOOLS: Use libpng16.lib for libpng for MSVC.
...
Modern libpng releases use this library name as output for their MSVC project files.
2016-03-09 22:03:47 +01:00
Johannes Schickel
46ef80963f
DEVTOOLS: Enable Edit&Continue on x64 for MSVC2015+.
2016-03-09 22:03:47 +01:00
Johannes Schickel
1c2dc2f89d
DEVTOOLS: Do not ignore libcmt.lib for MSBuild output.
...
This hints at broken library builds and thus should not be set for us.
2016-03-09 22:03:47 +01:00
Johannes Schickel
24558307c2
DEVTOOLS: Do not hardcode runtime libraries for MSVC2015.
2016-03-09 22:03:47 +01:00
Johannes Schickel
d3dba1b086
DEVTOOLS: Do not specify SCUMMVM_LIBS include dir twice for MSBuild.
2016-03-09 22:03:47 +01:00
Johannes Schickel
d2f3bc39b4
DEVTOOLS: Fix path separator in MSBuild's global props output.
2016-03-09 22:03:47 +01:00
Alexandre Detiste
6c298e964f
JANITORIAL: Typos detected with lintian & grep
2016-02-15 18:27:02 +01:00
Vincent Bénony
3b3668bb95
CREATE_TOOL: Use tabs instead of spaces...
2016-01-11 16:39:22 +01:00
Vincent Bénony
a6fe4d2499
CREATE_TOOL: Renames static libraries used for iOS target
2016-01-11 16:33:36 +01:00
Vincent Bénony
b5ef98637c
IOS: Renames a macro
2016-01-07 09:55:56 +01:00
Vincent Bénony
a4f9b9e2ae
DEVTOOL: Fixes a typo in an unused macro
2016-01-06 16:20:31 +01:00
Vincent Bénony
c7e65e60dd
DEVTOOL: Formatting
2016-01-06 16:20:31 +01:00
Vincent Bénony
40373d80a6
DEVTOOL: Fixes a typo
2016-01-06 16:20:31 +01:00
Vincent Bénony
56f6ac5f6e
DEVTOOL: Removes useless macro
2016-01-06 16:20:31 +01:00