mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-16 06:12:53 +00:00
chore: add compilation scripts for x64
This commit is contained in:
parent
481d301545
commit
37d52ae8da
@ -4,4 +4,6 @@
|
||||
cd "$(dirname "$0")/.." || exit 2
|
||||
|
||||
make -C build -j$(nproc) config=debug_x86 clean
|
||||
make -C build -j$(nproc) config=release_x86 clean
|
||||
make -C build -j$(nproc) config=release_x86 clean
|
||||
make -C build -j$(nproc) config=debug_x64 clean
|
||||
make -C build -j$(nproc) config=release_x64 clean
|
||||
|
6
scripts/make-debug-x64.sh
Executable file
6
scripts/make-debug-x64.sh
Executable file
@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Go to repository root
|
||||
cd "$(dirname "$0")/.." || exit 2
|
||||
|
||||
make -C build -j$(nproc) config=debug_x64 all
|
@ -3,4 +3,4 @@
|
||||
# Go to repository root
|
||||
cd "$(dirname "$0")/.." || exit 2
|
||||
|
||||
make -C build -j$(nproc) config=debug_x86 all
|
||||
make -C build -j$(nproc) config=debug_x86 all
|
||||
|
7
scripts/make-release-x64.sh
Executable file
7
scripts/make-release-x64.sh
Executable file
@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Go to repository root
|
||||
cd "$(dirname "$0")/.." || exit 2
|
||||
|
||||
echo "Start building with $(nproc) threads"
|
||||
make -C build -j$(nproc) config=release_x64 all
|
@ -4,4 +4,4 @@
|
||||
cd "$(dirname "$0")/.." || exit 2
|
||||
|
||||
echo "Start building with $(nproc) threads"
|
||||
make -C build -j$(nproc) config=release_x86 all
|
||||
make -C build -j$(nproc) config=release_x86 all
|
||||
|
Loading…
x
Reference in New Issue
Block a user