I'm almost a newbie and I'm getting into some troubles (just like this guy). I've built the POCO library under winXP using VisualStudio 2008 and I'm trying to create a test application (using Vim+gcc on cygwin). My (stupid) application code is:
# include
# include
using Poco::DateTime;
using namespace std;
int main(int argc, char** argv)
{
DateTime t = DateTime::DateTime();
cout << "Ciao!
";
return 0;
}
Which command should I type to build this application? Which library shoud I link? The /lib/* ones or the /bin/*.dll ones?
Thanks in advance,
petrux - a future POCO enthusiastic user (let's hope! ;-) )





