Overview
Comment: | Add skeleton for tests |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
f9e1d909b8ea189694728bf9fc9ece33 |
User & Date: | js on 2020-10-01 21:58:19 |
Other Links: | manifest | tags |
Context
2020-10-01
| ||
21:59 | Update .fossil-settings/ignore-glob check-in: eb4ede18a3 user: js tags: trunk | |
21:58 | Add skeleton for tests check-in: f9e1d909b8 user: js tags: trunk | |
21:26 | SL3Connection: Add a way to prepare statements check-in: c64a1aa6fa user: js tags: trunk | |
Changes
Modified Makefile from [9c67618733] to [9212b7c232].
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | - + + + |
|
︙ |
Modified configure.ac from [735b3a5ce7] to [d0a0c9cf6b].
︙ | |||
49 50 51 52 53 54 55 56 57 58 59 60 61 62 | 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | + | ]) ]) AC_ARG_ENABLE(static, AS_HELP_STRING([--enable-static], [build static library])) AS_IF([test x"$enable_static" = x"yes" -o x"$enable_shared" = x"no"], [ AC_SUBST(OBJSQLITE3_STATIC_LIB, "libobjsqlite3.a") AC_SUBST(EXCEPTIONS_A, "exceptions.a") AC_SUBST(EXCEPTIONS_EXCEPTIONS_A, "exceptions/exceptions.a") AC_SUBST(LIBOBJSQLITE3_DEP, "../src/libobjsqlite3.a") ]) AC_ARG_WITH(sqlite3, AS_HELP_STRING([--with-sqlite3=PREFIX], [build with SQLite3 in the specified prefix])) AS_IF([test x"$with_sqlite3" != x"no" -a x"$with_sqlite3" != x""], [ SQLITE3_CPPFLAGS="-I$with_sqlite3/include" SQLITE3_LIBS="-L$with_sqlite3/lib" |
︙ |
Modified extra.mk.in from [319d881146] to [6ad066ecd1].
1 2 3 4 5 6 7 8 9 10 11 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | + + + | OBJSQLITE3_SHARED_LIB = @OBJSQLITE3_SHARED_LIB@ OBJSQLITE3_STATIC_LIB = @OBJSQLITE3_STATIC_LIB@ OBJSQLITE3_FRAMEWORK = @OBJSQLITE3_FRAMEWORK@ OBJSQLITE3_LIB_MAJOR = 0 OBJSQLITE3_LIB_MINOR = 0 EXCEPTIONS_A = @EXCEPTIONS_A@ EXCEPTIONS_EXCEPTIONS_A = @EXCEPTIONS_EXCEPTIONS_A@ EXCEPTIONS_EXCEPTIONS_LIB_A = @EXCEPTIONS_EXCEPTIONS_LIB_A@ EXCEPTIONS_LIB_A = @EXCEPTIONS_LIB_A@ LIBOBJSQLITE3_DEP = @LIBOBJSQLITE3_DEP@ OBJFW_CONFIG = @OBJFW_CONFIG@ OBJFW_FRAMEWORK_LIBS = @OBJFW_FRAMEWORK_LIBS@ OBJFW_LIBS = @OBJFW_LIBS@ |
Added tests/Makefile version [7c413b6152].
|
Added tests/Tests.m version [0c4d0bd79f].
|