mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-02 20:00:38 -06:00
11 lines
168 B
C
11 lines
168 B
C
#include <string.h>
|
|
|
|
#include <sqlite3.h>
|
|
|
|
int main()
|
|
{
|
|
char sqlite3_version[] = SQLITE_VERSION;
|
|
|
|
return strcmp(sqlite3_version, CMAKE_EXPECTED_SQLite3_VERSION);
|
|
}
|