Searched full:pkg (Results 1 – 13 of 13) sorted by relevance
39 …_REF" =~ ^refs/(heads/release|tags/).* ]] || julia --project -e 'import Pkg; Pkg.test("LibCEED"; c…40 git checkout test/Project.toml && julia --project -e 'import Pkg; Pkg.test("LibCEED")'41 …julia --project=.style/ -e 'import Pkg; Pkg.instantiate()' && julia --project=.style/ .style/ceed_…
19 …julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate(); Pkg.…
1 # A bug in Julia 1.6.0's Pkg causes Preferences to be dropped during `Pkg.test()`, so we work around3 # through to the child Julia process. X-ref: https://github.com/JuliaLang/Pkg.jl/issues/2500
116 pkg> add LibCEED381 ### pkg-config383 …n addition to library and header, libCEED provides a [pkg-config](https://en.wikipedia.org/wiki/Pk…384 [For example](https://people.freedesktop.org/~dbn/pkg-config-guide.html#faq), if `$prefix` is a sta…387 $ cc `pkg-config --cflags --libs ceed` -o myapp myapp.c392 Most build systems have support for pkg-config.
79 using BinaryBuilder, Pkg
512 # Collect list of libraries and paths for use in linking and pkg-config
34 pkg-config = "0.3.19"
44 …using a system version from a standard path/somewhere that can be found by pkg-config, then you'll…
71 pkgconf = $(shell pkg-config $1 | sed -e 's/^"//g' -e 's/"$$//g')
98 pkgconf = $(shell pkg-config $(if $(STATIC),--static) $1 | sed -e 's/^"//g' -e 's/"$$//g')
105 pkgconf = $(shell pkg-config $1 | sed -e 's/^"//g' -e 's/"$$//g')
237 - Static libraries can be built with `make STATIC=1` and the pkg-config file is installed according…