2
0

cmake_generic.sh 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #!/usr/bin/env bash
  2. # Copyright (c) 2008-2023 the Urho3D project
  3. # License: MIT
  4. # Determine source tree and build tree
  5. if [[ "$1" ]] && [[ ! "$1" =~ ^- ]]; then BUILD=$1; shift; elif [[ -f $(pwd)/CMakeCache.txt ]]; then BUILD=$(pwd); else caller=$(ps -o args= $PPID |cut -d' ' -f2); if [[ ! "$caller" =~ cmake_.*\.sh$ ]]; then caller=$0; fi; echo "Usage: ${caller##*/} /path/to/build-tree [build-options]"; exit 1; fi
  6. SOURCE=$(cd ${0%/*}/..; pwd)
  7. if [[ "$BUILD" == "." ]]; then BUILD=$(pwd); fi
  8. # Define helpers
  9. . "$SOURCE"/script/.bash_helpers.sh
  10. # Detect CMake toolchains directory if it is not provided explicitly
  11. [ "$TOOLCHAINS" == "" ] && TOOLCHAINS="$SOURCE"/cmake/Toolchains
  12. [ ! -d "$TOOLCHAINS" -a -d "$URHO3D_HOME"/share/Urho3D/cmake/Toolchains ] && TOOLCHAINS="$URHO3D_HOME"/share/Urho3D/cmake/Toolchains
  13. # Default to native generator and toolchain if none is specified explicitly
  14. IFS=#
  15. OPTS=
  16. for a in $@; do
  17. case ${a#-D} in
  18. RPI=1)
  19. if [[ ! $(uname -m) =~ ^(arm|aarch64) ]]; then OPTS=(-D CMAKE_TOOLCHAIN_FILE=$TOOLCHAINS/RaspberryPi.cmake); fi
  20. ;;
  21. ARM=1)
  22. if [[ ! $(uname -m) =~ ^(arm|aarch64) ]]; then OPTS=(-D CMAKE_TOOLCHAIN_FILE=$TOOLCHAINS/Arm.cmake); fi
  23. ;;
  24. MINGW=1)
  25. OPTS=(-D CMAKE_TOOLCHAIN_FILE=$TOOLCHAINS/MinGW.cmake)
  26. ;;
  27. WEB=1)
  28. TOOLCHAINS=(${EMSCRIPTEN_ROOT_PATH}/tools/cmake/Modules/Platform)
  29. OPTS=(-D CMAKE_TOOLCHAIN_FILE=$TOOLCHAINS/Emscripten.cmake)
  30. ;;
  31. esac
  32. done
  33. # Create project with the chosen CMake generator and toolchain
  34. cmake -E make_directory "$BUILD" && cmake -E chdir "$BUILD" cmake ${OPTS[*]} $@ "$SOURCE" && post_cmake
  35. # vi: set ts=4 sw=4 expandtab: