aboutsummaryrefslogtreecommitdiffhomepage
path: root/meson.build
AgeCommit message (Collapse)Author
2022-11-30v6.67MITSUNARI Shigeo
2022-11-25v6.66MITSUNARI Shigeo
2022-11-22v6.65MITSUNARI Shigeo
2022-11-04v6.64MITSUNARI Shigeo
2022-10-07v6.63MITSUNARI Shigeo
2022-09-15v6.62MITSUNARI Shigeo
2022-08-10v6.61.2MITSUNARI Shigeo
2022-08-02v6.61.1MITSUNARI Shigeo
2022-07-29v6.61MITSUNARI Shigeo
2022-06-16v6.60.2MITSUNARI Shigeo
2022-06-15v6.60.1v6.60.1MITSUNARI Shigeo
2022-06-06v6.60MITSUNARI Shigeo
2022-06-01v6.06v6.06MITSUNARI Shigeo
2022-05-20update docv6.052MITSUNARI Shigeo
2022-05-13v6.051v6.051MITSUNARI Shigeo
2022-05-12v6.05MITSUNARI Shigeo
2022-04-22v6.041MITSUNARI Shigeo
2022-04-05v6.04MITSUNARI Shigeo
2022-03-08v6.03MITSUNARI Shigeo
2022-01-28v6.02MITSUNARI Shigeo
2021-12-14v6.01MITSUNARI Shigeo
2021-10-12fix conflictMITSUNARI Shigeo
2021-10-10build(meson): fix CMake Config file include dirAndrea Pappacoda
I previously set the path to ${CMAKE_CURRENT_LIST_FILE}/include, that was wrong and ended up pointing to a nonexistent directory.
2021-10-06remove tabsMITSUNARI Shigeo
2021-10-05build(meson): generate CMake package config filesAndrea Pappacoda
The cmake/config.cmake.in file uses the 'install(EXPORT)` CMake feature, that is not (yet?) supported by Meson (see https://github.com/mesonbuild/meson/issues/7632#issuecomment-704932266). To work around this issue I created a simple CMake config file that defines a single IMPORTED target. It is really basic, but since xbyak is a header-only library defining a single target works without issues. This is useful because with this feature when building the library using Meson, CMake users will be able to still use `find_package(xbyak)`, and are not forced to use the FindPkgConfig module
2021-09-18build: add Meson supportAndrea Pappacoda
This allows Meson users to use xbyak more easly, while it also provides a pkg-config file generator, useful to Linux distributions