Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integrate booststrap-dht with cmake #5

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Jul 17, 2015

  1. Add support for cmake builds.

    Although Jam may be the preferred build tool in many cases, cmake is also
    a very commonly used build tool. Adding cmake support simplifies integration
    of bootstrap-dht for those environments.
    davidchappelle committed Jul 17, 2015
    Configuration menu
    Copy the full SHA
    9504562 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    69a6490 View commit details
    Browse the repository at this point in the history
  3. Ignore out of source build directory for cmake.

    The common pattern with cmake from the top level directory is:
    
        mkdir build
        cd build
        cmake ../
    
    This is typically referred to as an out of source build. This leaves
    your project tree intact and does not pollute it with build output
    files. As a result, it makes sense to exclude this directory so that
    it doesn't accidentally get checked in to git.
    davidchappelle committed Jul 17, 2015
    Configuration menu
    Copy the full SHA
    364b0aa View commit details
    Browse the repository at this point in the history