x264 vs2013 yasm1.3.0 debug, x264 在vs2013下调试

1. 来源(可以不用看)
http://siliconandlithium.blogspot.com/2014/03/building-x264-on-windows-with-visual.html

2. https://github.com/ShiftMediaCenter/x264
直接下载改过的带vs工程的代码

3. SMCx264.sln

4. 关键, yasm 1.3.0 配置

C:Program Files (x86)MSBuildMicrosoft.Cppv4.0V120BuildCustomizations
vsyasm.props vsyasm.targets vsyasm.xml 这3个文件从官方下载对应版本后拷贝过来,

vsyasm.props 要改 <CommandLineTemplate>"$(YasmPath)"vsyasm.exe -Xvc -f win$(PlatformArchitecture) [AllOptions] [AdditionalOptions] "%(FullPath)"</CommandLineTemplate>

cpu太老要去掉  -Xvc

5. 工程现在能编译过, 但是输出文件夹,和调试路径不对, 修改一下即可

原文地址:https://www.cnblogs.com/logitechlike/p/3983852.html