Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | qmake: Fix CONFIG += exceptions_off with the MSVC project generator, take 2. | Jocelyn Turcotte | 2010-06-24 | 1 | -1/+0 |
| | | | | | | | | | | | The previous patch caused the pch header to be compiled without exception handling since the compilertool for the pch compilation do not get its options filled from the compiler flags. This patch instead set the value to off before calling parseOptions. This also reverts commit 73fa311f67b21c9b897de0196d3b8227f27d828f. Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | ||||
* | qmake: Fix CONFIG += exceptions_off with the MSVC project generator. | Jocelyn Turcotte | 2010-06-16 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | cl.exe default exception handling (when not specified on the command line) is to disable exceptions. In vcproj files however, if the ExceptionHandling option is not specified, the default behavior is to enable exceptions without SEH (/EHsh). This patch makes sure that ExceptionHandling is disabled when /EHsc is not fed to parseOption (which happens when the exceptions_off config is encountered). For VS2003 the values are a bit different where "false"==ehNone, "true"==ehNoSEH and ehSEH is not available. The default is "true" if not specified thus why we set it to "false" when exceptions_off is given. Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | ||||
* | Added support for .rc files on VS2010. | Martin Petersson | 2010-05-20 | 1 | -2/+37 |
| | | | | Reviewed-by: Thierry | ||||
* | Added a default value for optimization settings. | Martin Petersson | 2010-05-18 | 1 | -0/+1 |
| | | | | | Task-number: QTBUG-10728 Reviewed-by: Thierry | ||||
* | Fix project file generation for MSVC 2010 | Martin Petersson | 2010-04-30 | 1 | -0/+24 |
| | | | | | | Adding the post-build step to copy the dll into bin Reviewed-By: Thierry | ||||
* | Fix all qmake Makefiles to include the MSBuild backend | Marius Storm-Olsen | 2010-04-24 | 1 | -2/+2 |
| | | | | Reviewed-by: trustme | ||||
* | Add support for MSBuild, which is the project format for MSVC 2010 | Martin Petersson | 2010-04-21 | 1 | -0/+3317 |
Reviewed-by: Marius SO |