Murmele / Gittyup

Understand your Git history!
https://murmele.github.io/Gittyup
MIT License
1.37k stars 107 forks source link

Custom built version looks for files in the build directory #656

Open arminfuerst opened 8 months ago

arminfuerst commented 8 months ago

To distribute Gittyup to my local clients, I'd like to build it myself and package it (Linux/Debian). Building according to https://github.com/Murmele/Gittyup/blob/master/README.md seems to work. I checkout the version (currently commit 6bf49f007a9fb0577910885607833373d0552101). From the root of the repo, I use following commands:

git submodule update
cd dep/openssl/openssl
./config -fPIC
make
cd ../../..
mkdir -p build/release
cd build/release
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ../..
ninja

This results in a version in build/release I can start. I have following issues with this version:

I assume, I need to provide an additional parameter when configuring and I just can't figure out. Or there is a different solution. Anyway it would be good to include these details in README.md