mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
37 lines
910 B
Bash
Executable file
37 lines
910 B
Bash
Executable file
#!/bin/bash
|
|
if [ "x$ROS_ARCH" == "x" ]
|
|
then
|
|
echo Could not detect RosBE.
|
|
exit 1
|
|
fi
|
|
|
|
BUILD_ENVIRONMENT=MinGW
|
|
ARCH=$ROS_ARCH
|
|
REACTOS_SOURCE_DIR=$(cd `dirname $0` && pwd)
|
|
REACTOS_OUTPUT_PATH=output-$BUILD_ENVIRONMENT-$ARCH
|
|
|
|
if [ "$REACTOS_SOURCE_DIR" == "$PWD" ]
|
|
then
|
|
echo Creating directories in $REACTOS_OUTPUT_PATH
|
|
mkdir -p $REACTOS_OUTPUT_PATH
|
|
cd "$REACTOS_OUTPUT_PATH"
|
|
fi
|
|
|
|
mkdir -p host-tools
|
|
mkdir -p reactos
|
|
|
|
echo Preparing host tools...
|
|
cd host-tools
|
|
if [ -f CMakeCache.txt ]
|
|
then
|
|
rm -f CMakeCache.txt
|
|
fi
|
|
|
|
REACTOS_BUILD_TOOLS_DIR="$PWD"
|
|
cmake -G "Unix Makefiles" -DARCH=$ARCH "$REACTOS_SOURCE_DIR"
|
|
|
|
cd ../reactos
|
|
cmake -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE=toolchain-mingw32.cmake -DARCH=$ARCH -DREACTOS_BUILD_TOOLS_DIR="$REACTOS_BUILD_TOOLS_DIR" "$REACTOS_SOURCE_DIR"
|
|
|
|
echo Configure script complete! Enter directories and execute appropriate build commands\(ex: make, makex, etc...\).
|
|
|