dynarmic/externals
Andrea Pappacoda 4dcebc1822 build(cmake): add install target
This makes dynarmic installable, and also adds a CMake package config
file, that allows projects to use `find_package(dynarmic)` to import the
library.

I know #636 adds the same thing, but while experimenting with the
different install options in
https://github.com/merryhime/dynarmic/pull/636#discussion_r725656034
I ended up with a working patch, so I'm proposing this as well. This
implements solution 2.
2021-10-30 19:03:23 +01:00
..
catch/include/catch2 catch: Correct include directory 2021-08-08 12:52:55 +01:00
fmt externals: Update fmt to 8.0.0 2021-06-23 05:04:53 -04:00
mp externals: Update mp to latest 2021-08-10 12:30:46 +01:00
robin-map externals: Add robin-map 2020-05-26 20:51:29 +01:00
vixl externals: Build vixl 2021-03-01 20:36:21 +00:00
xbyak externals: Update xbyak 2021-03-27 21:08:22 +00:00
zycore externals: Add zycore 2021-05-25 21:28:58 +01:00
zydis externals: Remove unused submodule 2021-05-25 21:59:40 +01:00
CMakeLists.txt build(cmake): add install target 2021-10-30 19:03:23 +01:00
README.md externals: Build zydis 2021-05-25 21:32:34 +01:00

This repository uses subtrees to manage some of its externals.

Initial setup

git remote add externals-fmt https://github.com/fmtlib/fmt.git --no-tags
git remote add externals-mp https://github.com/MerryMage/mp.git --no-tags
git remote add externals-robin-map https://github.com/Tessil/robin-map.git --no-tags
git remote add externals-vixl https://git.linaro.org/arm/vixl.git --no-tags
git remote add externals-xbyak https://github.com/herumi/xbyak.git --no-tags
git remote add externals-zycore https://github.com/zyantific/zycore-c.git --no-tags
git remote add externals-zydis https://github.com/zyantific/zydis.git --no-tags

Updating

Change <ref> to refer to the appropriate git reference.

git fetch externals-fmt
git fetch externals-mp
git fetch externals-robin-map
git fetch externals-vixl
git fetch externals-xbyak
git fetch externals-zycore
git fetch externals-zydis
git subtree pull --squash --prefix=externals/fmt externals-fmt <ref>
git subtree pull --squash --prefix=externals/mp externals-mp <ref>
git subtree pull --squash --prefix=externals/robin-map externals-robin-map <ref>
git subtree pull --squash --prefix=externals/vixl/vixl externals-vixl <ref>
git subtree pull --squash --prefix=externals/xbyak externals-xbyak <ref>
git subtree pull --squash --prefix=externals/zycore externals-zycore <ref>
git subtree pull --squash --prefix=externals/zydis externals-zydis <ref>