Skip to content

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
little-brother committed Mar 14, 2020
0 parents commit 1bf61cd
Show file tree
Hide file tree
Showing 29 changed files with 249,030 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
bin/
obj/
ToDo.txt
prefs.sqlite
339 changes: 339 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Sqlite-gui is an another one GUI for [SQLite](https://www.sqlite.org/index.html) powered by C++, WinAPI and [Code::Blocks](http://www.codeblocks.org/).
Recent binaries are available at [Releases page](https://github.com/little-brother/sqlite-gui/releases).


### How to build
* sqlite3.dll + sqlite3.def
```
gcc -shared -Wl,--output-def=sqlite3.def sqlite3.c -o sqlite3.dll
```

* libsqlite3.a
```
dlltool -d sqlite3.def -l libsqlite3.a -D sqlite3.dll
```

* Extension e.g. iif
```
gcc -I ../include -g -shared iif.c -o iif.dll
```
Loading

0 comments on commit 1bf61cd

Please sign in to comment.