No description
| include/hashtable | ||
| src | ||
| .gitignore | ||
| CMakeLists.txt | ||
| compiler.c | ||
| LICENSE | ||
| README.md | ||
MemeDB
Utility to search your meme database by tags
Building from source
-
Clone the repository
git clone https://git.ploschka.com/bimender/memedb memedb cd memedb -
Create build subdirectory
mkdir build cd build -
Generate build files with cmake
cmake .. -G <generator> [options]Generator options:
- Ninja - most performant one i know
- Unix Makefiles - most compatible on *nix systems
For more options see CMake generators
Optional flags:
-DCMAKE_BUILD_TYPE='...' - Controls the optimization level and debug information of the build. Valid options for type are Debug, Release, RelWithDebInfo, and MinSizeRel. For more info see CMAKE_BUILD_TYPE-DCMAKE_INSTALL_PREFIX='...' - Controls where to install executable files
-
Start build process
cmake --build . -
Install in specified (or unspecified) prefix directory
cmake --install .