summaryrefslogtreecommitdiff
path: root/mesonbuild/backend/vs2010backend.py
Commit message (Collapse)AuthorAgeFilesLines
...
| * vs2010: fix target_to_build_root methodNicolas Schneider2016-02-241-4/+2
| | | | | | | | | | | | Python's os.path.split() does not split the path into its components. Instead, split the path with str.split() using the OS's file system separator.
* | vs2010: do not add generated object files to projectNicolas Schneider2016-02-231-4/+3
| | | | | | | | | | | | | | MSBuild automatically includes the output objects of the CustomBuildStep in the link command. If the objects are additionally added to the project, they will be put twice on the linker command, which leads to LNK4042 warning.
* | vs2010: write CustomBuildStep only if there is at least 1 command to be runNicolas Schneider2016-02-231-8/+9
| |
* | vs2010: merge all generators into single command invocationNicolas Schneider2016-02-231-5/+11
| | | | | | | | | | | | MSBuild does not allow multiple CustomBuildStep elements. Therefore, all input / output files and generator commands must be concatenated and put into a single CustomBuildStep.
* | vs2010: fix including a precompiled / generated object file in compilationNicolas Schneider2016-02-231-3/+14
| | | | | | | | | | MSBuild uses the <Object Include='FILE'/> syntax to add prebuilt object files to the project.
* | vs2010: fix wrong generator command concatenationNicolas Schneider2016-02-231-1/+1
|/
* Moved backends to their own module.Jussi Pakkanen2016-01-231-0/+646