poac
poac copied to clipboard
A package manager and build system for C++
`--example NAME `
https://doc.rust-lang.org/cargo/reference/build-scripts.html Necessary when using `protobuf` etc.
`--bench NAME`
[パッケージリポジトリ](https://poac.io/packages)に `poac` の依存パッケージが存在しないため, `poac` に対して `poac install` を行うとコケる. ## 不足パッケージ - [ ] `boost/property_tree` - [ ] `boost/filesystem` - [ ] `boost/range` - [ ] `boost/algorithm` - [ ] `boost/foreach`...
I am using C ++ IDE CLion and must use CMake. I wonder if you can use poac in CMake. If so, how should I use it?
fixes #921 Changed the code to check if before and after the `.` is a number, fixing package names like `gtkmm-4.0`.
I'm trying to use the `gtkmm-4.0` in a project but the issue is that the package name (at least in arch linux) has a dot (`.`) in it, so even...
As `git_error_*`s are already declared in `git2` namespace for older versions of libgit2, it's more favorable to use those identifiers than now deprecated ones, I suppose. Another approach might be...
Hello, I've encountered a build error while compiling the latest version of Poac (also I tried 0.9.2). I got this: ``` g++ -std=c++20 -fdiagnostics-color -pedantic-errors -Wall -Wextra -Wpedantic -g -O0...
It is possible to specify `-stdlib` by writing the following in poac.toml, but it will not work when `CXX=g++`. ```toml [profile] cxxflags = ["-stdlib=libc++"] ``` I felt it would be...