-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2da486d
commit 1f327f1
Showing
176 changed files
with
2,157 additions
and
2,059 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
export SRC_DIR=/mnt/z/Projets/C++/Ashes | ||
|
||
rm -r ./build-clang | ||
rm -r ./build-gcc | ||
rm -r ./vcpkg-clang | ||
rm -r ./vcpkg-gcc | ||
|
||
mkdir build-clang | ||
mkdir build-gcc | ||
mkdir vcpkg-clang | ||
mkdir vcpkg-gcc | ||
|
||
cd ./build-clang | ||
CC=clang-15 CXX=clang++-15 cmake $SRC_DIR --preset dev-ninja-debug -DPROJECTS_OUTPUT_DIR=$PWD | ||
ninja -j30 | ||
|
||
cd ../build-gcc | ||
CC=gcc-12 CXX=g++-12 cmake $SRC_DIR --preset dev-ninja-release -DPROJECTS_OUTPUT_DIR=$PWD | ||
ninja -j30 | ||
|
||
cd ../vcpkg-clang | ||
CC=clang-15 CXX=clang++-15 cmake $SRC_DIR --preset dev-vcpkg-ninja-release -DPROJECTS_OUTPUT_DIR=$PWD -DCMAKE_TOOLCHAIN_FILE=$SRC_DIR/external/vcpkg/scripts/buildsystems/vcpkg.cmake | ||
cmake . | ||
ninja -j30 | ||
|
||
cd ../vcpkg-gcc | ||
CC=gcc-12 CXX=g++-12 cmake $SRC_DIR --preset dev-vcpkg-ninja-debug -DPROJECTS_OUTPUT_DIR=$PWD -DCMAKE_TOOLCHAIN_FILE=$SRC_DIR/external/vcpkg/scripts/buildsystems/vcpkg.cmake | ||
cmake . | ||
ninja -j30 | ||
|
||
cd .. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.