mirror of https://github.com/xemu-project/xemu.git
util: Move xxHash submodule to util/
This commit is contained in:
parent
5ae39a321a
commit
a4115cf8b3
|
@ -73,6 +73,6 @@
|
||||||
url = https://github.com/epezent/implot.git
|
url = https://github.com/epezent/implot.git
|
||||||
ignore = untracked
|
ignore = untracked
|
||||||
[submodule "hw/xbox/nv2a/xxHash"]
|
[submodule "hw/xbox/nv2a/xxHash"]
|
||||||
path = hw/xbox/nv2a/xxHash
|
path = util/xxHash
|
||||||
url = https://github.com/Cyan4973/xxHash.git
|
url = https://github.com/Cyan4973/xxHash.git
|
||||||
ignore = untracked
|
ignore = untracked
|
||||||
|
|
|
@ -261,7 +261,7 @@ else
|
||||||
git_submodules_action="ignore"
|
git_submodules_action="ignore"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
git_submodules="ui/keycodemapdb ui/imgui ui/implot hw/xbox/nv2a/xxHash"
|
git_submodules="ui/keycodemapdb ui/imgui ui/implot util/xxHash"
|
||||||
git="git"
|
git="git"
|
||||||
|
|
||||||
# Don't accept a target_list environment variable.
|
# Don't accept a target_list environment variable.
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "nv2a_int.h"
|
#include "nv2a_int.h"
|
||||||
#include "xxHash/xxh3.h"
|
#include "util/xxHash/xxh3.h"
|
||||||
#include "s3tc.h"
|
#include "s3tc.h"
|
||||||
#include "ui/xemu-settings.h"
|
#include "ui/xemu-settings.h"
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@ sub_file="${sub_tdir}/submodule.tar"
|
||||||
# different to the host OS.
|
# different to the host OS.
|
||||||
submodules="dtc slirp meson ui/keycodemapdb"
|
submodules="dtc slirp meson ui/keycodemapdb"
|
||||||
submodules="$submodules tests/fp/berkeley-softfloat-3 tests/fp/berkeley-testfloat-3"
|
submodules="$submodules tests/fp/berkeley-softfloat-3 tests/fp/berkeley-testfloat-3"
|
||||||
submodules="$submodules ui/imgui ui/implot hw/xbox/nv2a/xxHash" # xemu extras
|
submodules="$submodules ui/imgui ui/implot util/xxHash" # xemu extras
|
||||||
sub_deinit=""
|
sub_deinit=""
|
||||||
|
|
||||||
function cleanup() {
|
function cleanup() {
|
||||||
|
|
|
@ -206,7 +206,7 @@ Lib('inih', 'https://github.com/benhoyt/inih',
|
||||||
Lib('xxHash', 'https://github.com/Cyan4973/xxHash.git',
|
Lib('xxHash', 'https://github.com/Cyan4973/xxHash.git',
|
||||||
bsd, 'https://raw.githubusercontent.com/Cyan4973/xxHash/dev/LICENSE', license_lines=(1,26),
|
bsd, 'https://raw.githubusercontent.com/Cyan4973/xxHash/dev/LICENSE', license_lines=(1,26),
|
||||||
ships_static=all_platforms,
|
ships_static=all_platforms,
|
||||||
submodule=Submodule('hw/xbox/nv2a/xxHash')
|
submodule=Submodule('util/xxHash')
|
||||||
),
|
),
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue