the sqlite3 core amalgamation consist of sqlite3.c and sqlite3.h. How do I include it into a c++ application since I can't compile the sqlite3 core with a c++ compiler with the rest of my application? using linux/g++/gcc
You can compile sqlite3.c with a C++ compiler. Many C++ compilers by default treat a .c file as a C program. Simply add the amalaged source file to your project where it can be compiled and linked with the rest of the project.