I've build Visual Magich config tool, then build MTD libs for x86 system.
I've create simple win 32 console app. Set proper path for "Additional Library Directories" and "Additional Include Directories"
Set all libs to Linker's "Additional Dependencies"
My code:
Code: Select all
#include "stdafx.h"
#include "Magick++.h"
using namespace std;
using namespace Magick;
int main( int argc, char ** argv )
{
InitializeMagick( *argv );
system( "pause" );
return 0;
}
What may be wrong here?
Please help.