Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

File format conversion tool #76

Closed
wants to merge 16 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
SUBDIRS = src test
test_DEPS = src
SUBDIRS = src test convert
convert_DEPS = src
test_DEPS = src convert

PASSIVE_SUBDIRS = doc/ref_cpp/examples
doc_ref_cpp_examples_DEPS = src
Expand Down
13 changes: 13 additions & 0 deletions convert/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/*.d
/*.o

# Coverage data
/*.gcno
/*.gcda

/tightdb-convert
/tightdb-convert-noinst
/tightdb-convert-dbg
/tightdb-convert-dbg-noinst
/tightdb-convert-cov
/tightdb-convert-cov-noinst
6 changes: 6 additions & 0 deletions convert/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
bin_PROGRAMS = tightdb-convert

tightdb_convert_SOURCES = main.cpp
tightdb_convert_LIBS = ../src/tightdb/libtightdb.a

include ../src/generic.mk
Loading