You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

171 lines
5.9 KiB

  1. #!/bin/sh
  2. # Change your executable name here
  3. GAME_NAME="game"
  4. # Set your sources here (relative paths!)
  5. # Example with two source folders:
  6. # SOURCES="src/*.c src/submodule/*.c"
  7. SOURCES="core_basic_window.c"
  8. # Set your raylib/src location here (relative path!)
  9. RAYLIB_SRC="../../src"
  10. # About this build script: it does many things, but in essence, it's
  11. # very simple. It has 3 compiler invocations: building raylib (which
  12. # is not done always, see logic by searching "Build raylib"), building
  13. # src/*.c files, and linking together those two. Each invocation is
  14. # wrapped in an if statement to make the -qq flag work, it's pretty
  15. # verbose, sorry.
  16. # Stop the script if a compilation (or something else?) fails
  17. set -e
  18. # Get arguments
  19. while getopts ":hdusrcq" opt; do
  20. case $opt in
  21. h)
  22. echo "Usage: ./build-osx.sh [-hdusrcqq]"
  23. echo " -h Show this information"
  24. echo " -d Faster builds that have debug symbols, and enable warnings"
  25. echo " -u Run upx* on the executable after compilation (before -r)"
  26. echo " -s Run strip on the executable after compilation (before -r)"
  27. echo " -r Run the executable after compilation"
  28. echo " -c Remove the temp/(debug|release) directory, ie. full recompile"
  29. echo " -q Suppress this script's informational prints"
  30. echo " -qq Suppress all prints, complete silence (> /dev/null 2>&1)"
  31. echo ""
  32. echo "* This is mostly here to make building simple \"shipping\" versions"
  33. echo " easier, and it's a very small bit in the build scripts. The option"
  34. echo " requires that you have upx installed and on your path, of course."
  35. echo ""
  36. echo "Examples:"
  37. echo " Build a release build: ./build-osx.sh"
  38. echo " Build a release build, full recompile: ./build-osx.sh -c"
  39. echo " Build a debug build and run: ./build-osx.sh -d -r"
  40. echo " Build in debug, run, don't print at all: ./build-osx.sh -drqq"
  41. exit 0
  42. ;;
  43. d)
  44. BUILD_DEBUG="1"
  45. ;;
  46. u)
  47. UPX_IT="1"
  48. ;;
  49. s)
  50. STRIP_IT="1"
  51. ;;
  52. r)
  53. RUN_AFTER_BUILD="1"
  54. ;;
  55. c)
  56. BUILD_ALL="1"
  57. ;;
  58. q)
  59. if [ -n "$QUIET" ]; then
  60. REALLY_QUIET="1"
  61. else
  62. QUIET="1"
  63. fi
  64. ;;
  65. \?)
  66. echo "Invalid option: -$OPTARG" >&2
  67. exit 1
  68. ;;
  69. esac
  70. done
  71. # Set CC if it's not set already
  72. if [ -z "$CC" ]; then
  73. CC=cc
  74. fi
  75. # Directories
  76. ROOT_DIR=$PWD
  77. SOURCES="$ROOT_DIR/$SOURCES"
  78. RAYLIB_SRC="$ROOT_DIR/$RAYLIB_SRC"
  79. # Flags
  80. OUTPUT_DIR="builds/osx"
  81. COMPILATION_FLAGS="-std=c99 -O2 -flto"
  82. FINAL_COMPILE_FLAGS="-s"
  83. WARNING_FLAGS="-Wall -Wextra -Wpedantic"
  84. LINK_FLAGS="-flto -framework OpenGL -framework OpenAL -framework IOKit -framework CoreVideo -framework Cocoa"
  85. # Debug changes to flags
  86. if [ -n "$BUILD_DEBUG" ]; then
  87. OUTPUT_DIR="builds-debug/osx"
  88. COMPILATION_FLAGS="-std=c99 -O0 -g"
  89. FINAL_COMPILE_FLAGS=""
  90. LINK_FLAGS="-framework OpenGL -framework OpenAL -framework IOKit -framework CoreVideo -framework Cocoa"
  91. fi
  92. # Display what we're doing
  93. if [ -n "$BUILD_DEBUG" ]; then
  94. [ -z "$QUIET" ] && echo "COMPILE-INFO: Compiling in debug mode. ($COMPILATION_FLAGS $WARNING_FLAGS)"
  95. else
  96. [ -z "$QUIET" ] && echo "COMPILE-INFO: Compiling in release mode. ($COMPILATION_FLAGS $FINAL_COMPILE_FLAGS)"
  97. fi
  98. # Create the raylib cache directory
  99. TEMP_DIR="temp/release"
  100. if [ -n "$BUILD_DEBUG" ]; then
  101. TEMP_DIR="temp/debug"
  102. fi
  103. # If there's a -c flag, remove the cache
  104. if [ -d "$TEMP_DIR" ] && [ -n "$BUILD_ALL" ]; then
  105. [ -z "$QUIET" ] && echo "COMPILE-INFO: Found cached raylib, rebuilding."
  106. rm -r "$TEMP_DIR"
  107. fi
  108. # If temp directory doesn't exist, build raylib
  109. if [ ! -d "$TEMP_DIR" ]; then
  110. mkdir -p $TEMP_DIR
  111. cd $TEMP_DIR
  112. RAYLIB_DEFINES="-D_DEFAULT_SOURCE -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33"
  113. RAYLIB_C_FILES="$RAYLIB_SRC/rcore.c $RAYLIB_SRC/rshapes.c $RAYLIB_SRC/rtextures.c $RAYLIB_SRC/rtext.c $RAYLIB_SRC/rmodels.c $RAYLIB_SRC/utils.c $RAYLIB_SRC/raudio.c"
  114. RAYLIB_INCLUDE_FLAGS="-I$RAYLIB_SRC -I$RAYLIB_SRC/external/glfw/include"
  115. if [ -n "$REALLY_QUIET" ]; then
  116. $CC -c $RAYLIB_DEFINES $RAYLIB_INCLUDE_FLAGS $COMPILATION_FLAGS -x objective-c $RAYLIB_SRC/rglfw.c > /dev/null 2>&1
  117. $CC -c $RAYLIB_DEFINES $RAYLIB_INCLUDE_FLAGS $COMPILATION_FLAGS $RAYLIB_C_FILES > /dev/null 2>&1
  118. else
  119. $CC -c $RAYLIB_DEFINES $RAYLIB_INCLUDE_FLAGS $COMPILATION_FLAGS -x objective-c $RAYLIB_SRC/rglfw.c
  120. $CC -c $RAYLIB_DEFINES $RAYLIB_INCLUDE_FLAGS $COMPILATION_FLAGS $RAYLIB_C_FILES
  121. fi
  122. [ -z "$QUIET" ] && echo "COMPILE-INFO: raylib compiled into object files in: $TEMP_DIR/"
  123. cd $ROOT_DIR
  124. fi
  125. # Build the actual game
  126. mkdir -p $OUTPUT_DIR
  127. cd $OUTPUT_DIR
  128. [ -z "$QUIET" ] && echo "COMPILE-INFO: Compiling game code."
  129. if [ -n "$REALLY_QUIET" ]; then
  130. $CC -c -I$RAYLIB_SRC $SOURCES $COMPILATION_FLAGS $WARNING_FLAGS > /dev/null 2>&1
  131. $CC -o $GAME_NAME $ROOT_DIR/$TEMP_DIR/*.o *.o $LINK_FLAGS > /dev/null 2>&1
  132. else
  133. $CC -c -I$RAYLIB_SRC $SOURCES $COMPILATION_FLAGS $WARNING_FLAGS
  134. $CC -o $GAME_NAME $ROOT_DIR/$TEMP_DIR/*.o *.o $LINK_FLAGS
  135. fi
  136. rm *.o
  137. [ -z "$QUIET" ] && echo "COMPILE-INFO: Game compiled into an executable in: $OUTPUT_DIR/"
  138. if [ -n "$STRIP_IT" ]; then
  139. [ -z "$QUIET" ] && echo "COMPILE-INFO: Stripping $GAME_NAME."
  140. strip $GAME_NAME
  141. fi
  142. if [ -n "$UPX_IT" ]; then
  143. [ -z "$QUIET" ] && echo "COMPILE-INFO: Packing $GAME_NAME with upx."
  144. upx $GAME_NAME > /dev/null 2>&1
  145. fi
  146. if [ -n "$RUN_AFTER_BUILD" ]; then
  147. [ -z "$QUIET" ] && echo "COMPILE-INFO: Running."
  148. if [ -n "$REALLY_QUIET" ]; then
  149. ./$GAME_NAME > /dev/null 2>&1
  150. else
  151. ./$GAME_NAME
  152. fi
  153. fi
  154. cd $ROOT_DIR
  155. [ -z "$QUIET" ] && echo "COMPILE-INFO: All done."