Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sodomon2/sqliteman
https://github.com/sodomon2/sqliteman
Last synced: about 12 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/sodomon2/sqliteman
- Owner: sodomon2
- License: other
- Created: 2019-06-27T09:08:19.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-06-27T09:12:04.000Z (over 5 years ago)
- Last Synced: 2023-11-16T01:27:10.640Z (12 months ago)
- Language: C++
- Size: 1.51 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: COPYING
Awesome Lists containing this project
README
Sqliteman is simple but powerfull Sqlite3 GUI database manager.
see: http://sqliteman.com
Full documentation is included in this package and it's available
on the website too.REQUIREMENTS
For using binaries:
- allow your OS distributor to solve requirements automaticallyBUILDING FROM SOURCES
Qmake project is used only for translations.
MS Windows:
- Full Qt4.2 (4.3 suggested) or later properly installed on path
- building procedure (in the Sqliteman root directory):
1) cmake
2) makesee available cmake options below.
UN*X:
Requirements:
- cmake (http://cmake.org)
- Qt toolkit, at least version 4.2 or later required (http://trolltech.com)
with sqlite3 module. 4.3 is strongly suggested.
- standard building environment (C++ compiler etc.)- Sqliteman uses cmake building procedure:
1) cmake .
2) make
3) make installAvailable options for cmake (cmake options .):
-DWANT_DEBUG=1
build application with the debug symbols
-DWANT_RESOURCES=1
build application with all icons, docs and translation files compiled in
as one binary file. It's useful e.g. for "portable" distribution or fo
Mac dmg files.
This option is set automatically on Windows.
-DWANT_INTERNAL_QSCINTILLA=1
Set this one if you don't have Qscintilla2 libraries and header files
installed. It will use included source codes.Hints for cmake:
- install into specified directory:
cmake -DCMAKE_INSTALL_PREFIX:PATH=/foo/bar .- cmake cannot find my Qt (e.g. Arch's /opt/qt):
export PATH=/opt/qt/bin:$path
cmake .
...etc.