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

added support for cmake install #84

Merged
merged 2 commits into from
Sep 16, 2017
Merged

Commits on Sep 16, 2017

  1. added support for cmake install

    To have cmake install units library to a local 'install' directory:
    
    mkdir build
    cd build
    cmake -DCMAKE_INSTALL_PREFIX="install" ..
    cmake --build . --target install
    
    The units library can then be used in some other cmake project using the
    standard
    'find_package' command. Like so:
    
    find_package(units)
    Paul Soucy committed Sep 16, 2017
    Configuration menu
    Copy the full SHA
    1fcf880 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6c8d6c7 View commit details
    Browse the repository at this point in the history