Skip to content

Instantly share code, notes, and snippets.

@smarek
Created December 27, 2016 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smarek/53c3e9a53991587c8451b2094bfd2d1e to your computer and use it in GitHub Desktop.
Save smarek/53c3e9a53991587c8451b2094bfd2d1e to your computer and use it in GitHub Desktop.
Install Veles from source with GTest
sudo bash
# Install GTest with shared lib
apt-get install libgtest-dev
cd /usr/src/gtest/build-aux
cmake -D BUILD_SHARED_LIBS=ON -D CMAKE_BUILD_TYPE=Release ..
make -j
make install
# Compile and Install Veles
cd /tmp/veles-2016.12
mkdir build
cd build
cmake -D CMAKE_BUILD_TYPE=Release
make -j
make install
# Run
veles
@smarek
Copy link
Author

smarek commented Dec 27, 2016

Debian amd64 stretch/sid (Linux d322 4.8.0-2-amd64 #1 SMP Debian 4.8.11-1 (2016-12-02) x86_64 GNU/Linux)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment