mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
43c7fc0c8d
svn path=/branches/ros-csrss/; revision=57630
40 lines
1 KiB
Bash
Executable file
40 lines
1 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
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 [ "$1" = "ninja" ]; then
|
|
CMAKE_GENERATOR="Ninja"
|
|
else
|
|
CMAKE_GENERATOR="Unix Makefiles"
|
|
fi
|
|
|
|
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 reactos
|
|
|
|
echo Preparing host tools...
|
|
cd host-tools
|
|
rm -f CMakeCache.txt
|
|
|
|
REACTOS_BUILD_TOOLS_DIR="$PWD"
|
|
cmake -G "$CMAKE_GENERATOR" -DARCH=$ARCH "$REACTOS_SOURCE_DIR"
|
|
|
|
echo Preparing reactos...
|
|
cd ../reactos
|
|
rm -f CMakeCache.txt
|
|
|
|
cmake -G "$CMAKE_GENERATOR" -DENABLE_CCACHE=0 -DPCH=0 -DCMAKE_TOOLCHAIN_FILE=toolchain-gcc.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...\).
|