[CMake] cpack install problem

John Drescher drescherjm at gmail.com
Thu Sep 3 15:54:16 EDT 2009


On Thu, Sep 3, 2009 at 3:21 PM, Dean Inglis<dean.inglis at camris.ca> wrote:
> Hi Bill,
>
> within the exe there appear to be two versions:
>
>  <dependency>
>    <dependentAssembly>
>      <assemblyIdentity type="win32" name="Microsoft.VC80.CRT"
> version="8.0.50727.4053" processorArchitecture="x86"
> publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
>    </dependentAssembly>
>  </dependency>
>  <dependency>
>    <dependentAssembly>
>      <assemblyIdentity type="win32" name="Microsoft.VC80.CRT"
> version="8.0.50727.762" processorArchitecture="x86"
> publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
>    </dependentAssembly>
>  </dependency>
> </assembly>
>

I believe .762 is 2005sp1 and .4053 was a security pack that was
released by microsoft 2 to 4 weeks ago. Applying the service pack to
visual studio via microsoft update put the new vcredist_x86 for that
in my Visual Studio 2005 tree and installing this to client machines
works with the 0.4053 versions allows them to run my applications.

Here is what I have for my latest application:

<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
  <dependency>
    <dependentAssembly>
      <assemblyIdentity type="win32" name="Microsoft.VC80.CRT"
version="8.0.50727.762" processorArchitecture="x86"
publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
    </dependentAssembly>
  </dependency>
  <dependency>
    <dependentAssembly>
      <assemblyIdentity type="win32" name="Microsoft.VC80.CRT"
version="8.0.50727.4053" processorArchitecture="x86"
publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
    </dependentAssembly>
  </dependency>
  <dependency>
    <dependentAssembly>
      <assemblyIdentity type="win32" name="Microsoft.VC80.CRT"
version="8.0.50608.0" processorArchitecture="x86"
publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
    </dependentAssembly>
  </dependency>

John


More information about the CMake mailing list