https://github.com/juliapackaging/cmake.jl
Julia package to provide access to CMake
https://github.com/juliapackaging/cmake.jl
cmake julia
Last synced: 10 months ago
JSON representation
Julia package to provide access to CMake
- Host: GitHub
- URL: https://github.com/juliapackaging/cmake.jl
- Owner: JuliaPackaging
- License: other
- Created: 2018-07-28T01:02:38.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-05-04T05:04:33.000Z (about 6 years ago)
- Last Synced: 2025-03-24T01:51:13.030Z (over 1 year ago)
- Topics: cmake, julia
- Language: Julia
- Size: 50.8 KB
- Stars: 13
- Watchers: 7
- Forks: 13
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# CMake
[](https://travis-ci.org/JuliaPackaging/CMake.jl)
[](https://ci.appveyor.com/project/StevenGJohnson/cmake-jl/branch/master)
This package is designed to make it easier for Julia packages to build binary dependencies that use CMake. It automatically downloads a modern version of CMake (3.X.Y, instead of the Ubuntu 14.04 default of 2.8.12), and it exports a constant `cmake` giving the path of this executable.
For a [BinDeps.jl](https://github.com/JuliaLang/BinDeps.jl)-compatible `CMakeProcess` class for automatically building CMake dependencies,
see the [CMakeWrapper.jl](https://github.com/JuliaPackaging/CMakeWrapper.jl) package.
# Installation
julia> Pkg.add("CMake")
# Usage
`using CMake` gives you access to a constant string `cmake` giving
the path of the `cmake` executable.