I would like to use the field and group implementations of the secp256k1 library, so that I could experiment on the features of the elliptic curve, but I do not know how to include the correct header files. Is there a simple way? For example I want to achieve that I should be able to compile a single file
#include "./src/group.h"
int main() {
secp256k1_ge someVariable;
return 0;
}
Thanks in advance!