Salut à vous,
j'essaye d'utiliser LibHaru comme bibliothèque pour générer des PDF, elle as l'avantage d'être gratuite et multiplateforme. Le problème est que lors du link il ne trouve pas les fonctions dans le lib :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
[Lieur Erreur] Error: Externe 'HPDF_New' non résolu référencé par D:\MES DOCUMENTS\MES PROJETS\C++\JAN\TEST_PDF\TFPFACTURATION.OBJ
...
[Lieur Erreur] Error: Externe 'HPDF_Free' non résolu référencé par D:\MES DOCUMENTS\MES PROJETS\C++\JAN\TEST_PDF\TFPFACTURATION.OBJ
En regardant plus précisément la documentation j'ai vu qu'il y avait une installe à faire, mais je ne comprend pas ou il faut trouver le makefile dont ils parlent , impossible de le trouvé de le zip telechargé :

Citation Envoyé par documentation
Windows platforms (except cygwin/MinGW)

Unpack the libharu package on command prompt.

unzip -xvzf libharu_X.X.X_win32.zip
cd libharu-X.X.X
There are several kinds of Makefile for every compilers in script directory.
Build library with an appropriate Makefile.
1) Microsoft VC++ Compiler

nmake -f script/Makefile.msvc
2) Bor land C++
make -f script/Makefile.bcc

Note:
If you want to create DLL, use Makefile.msvc_dll (or Makafile.bcc32_dll) instead.
Type following commands to test library. If it succeeds, some PDF files are made in the demo directory.
In Windows environment, Install command is not prepared.

1) Microsoft VC++ Compiler
nmake -f script/Makefile.msvc[_dll] demo
2) Bor land C++
make -f script/Makefile.bcc[_dll] demo

If you use "Visual Studio .NET", use "Visual Studio .NET Command Prompt" to build Haru. But some warnings about optimizing may occur because of the compiler included in "Visual Studio .NET" does not have an optimizing feature.
We can also use "Microsoft Visual C++ Toolkit 2003" and "Microsoft Platform SDK" instead. The compiler of "Microsoft Visual C++ Toolkit 2003" supports optimizing feature.