When I was trying to compile Alembic-1.0.5 with VC10, compiler reported
undefined int32_t, uint32_t, int64_t, uint64_t types, I just added the
following line in AbcCoreHDF5\Foundation.h, then everything works fine.
#include <boost/cstdint.hpp>
typedef boost::int32_t int32_t;
typedef boost::uint32_t uint32_t;
typedef boost::int64_t int64_t;
typedef boost::uint64_t uint64_t;
Original issue reported on code.google.com by Bo.Schwa...@gmail.com on 2 Mar 2012 at 1:30
Original issue reported on code.google.com by
Bo.Schwa...@gmail.com
on 2 Mar 2012 at 1:30