Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
d69b28f869973fa42f8f52263308e8564ea6dd73
/
.
/
Tests
/
FindSQLite3
/
Test
/
main.c
blob: f812034a0f09c57afc2ddaa6e679f72b5c5e493e [
file
]
#include
<sqlite3.h>
#include
<string.h>
int
main
(
void
)
{
char
sqlite3_version
[]
=
SQLITE_VERSION
;
return
strcmp
(
sqlite3_version
,
CMAKE_EXPECTED_SQLite3_VERSION
);
}