
25 Aug
2008
25 Aug
'08
10 p.m.
Beman Dawes wrote:
Let's get back to basics. Does this program compile for you?
#include <boost/filesystem/operations.hpp>
int main() { boost::filesystem::copy_file( L"foo", L"bar" ); return 0; }
In compiles fine for me on Ubuntu 8.04.1 and g++ 4.2.1. I haven't had a chance yet to build the libraries to see if it links. I'll do that later tonight or tomorrow.
Update: the above compiles, links, and runs fine for me. --Beman