Mein Problem besteht darin, dass ich sie nicht zum laufen bekomme.
Das Minimalbeispiel sieht so aus:
Code: Alles auswählen
#include <botan/botan.h>
int main()
{
LibraryInitializer init;
return 0;
}
@ubuntu:~/Desktop$ g++ -c test.cpp -o test
test.cpp: In function ‘int main()’:
test.cpp:5: error: ‘LibraryInitializer’ was not declared in this scope
test.cpp:5: error: expected ‘;’ before ‘init’
Meine Vermutung ist, dass die Bibliothek nicht bekannt ist.
Laut Anleitung habe ich volgendes nach dem Download getan:
$ ./configure.py
$ make
$ make install
Ich hoffe man kann mir totz dieser möglicherweise banalen Frage weiterhelfen.
Vielen Dank im vorraus.