| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- #!/bin/bash
- # Load arguments into named variables in order
- PROJECT_FOLDERS=$1 # Where your code is as a space separated list of folders in a quote
- TARGET_FILE=$2 # Your executable to build
- ROOT_PATH=$3 # The parent folder of DFPSR, SDK and tools
- TEMP_ROOT=$4 # Where your temporary objects should be
- WINDOW_MANAGER=$5 # Which library to use for creating a window
- COMPILER_FLAGS=$6 # -DDEBUG/-DNDEBUG -std=c++14/-std=c++17 -O2/-O3
- LINKER_FLAGS=$7 # Additional linker flags for libraries and such
- # Replace space with underscore
- TEMP_SUB="${COMPILER_FLAGS// /_}"
- # Replace + with p
- TEMP_SUB=$(echo $TEMP_SUB | tr "+" "p")
- # Remove = and -
- TEMP_SUB=$(echo $TEMP_SUB | tr -d "=-")
- TEMP_DIR=${TEMP_ROOT}/${TEMP_SUB}
- echo "Building version ${TEMP_SUB}"
- # Allow calling other scripts
- chmod +x ${ROOT_PATH}/tools/buildScripts/clean.sh
- chmod +x ${ROOT_PATH}/tools/buildScripts/buildLibrary.sh
- # Make a clean folder
- ${ROOT_PATH}/tools/buildScripts/clean.sh ${TEMP_DIR}
- echo "Compiling renderer framework."
- ${ROOT_PATH}/tools/buildScripts/buildLibrary.sh g++ ${ROOT_PATH}/DFPSR ${TEMP_DIR} "dfpsr" "${COMPILER_FLAGS}" LAZY
- if [ $? -ne 0 ]
- then
- exit 1
- fi
- # Abort if the project folder is replaced with the NONE keyword
- if [ "${PROJECT_FOLDERS}" = "NONE" ]
- then
- exit 0
- fi
- echo "Compiling application."
- ${ROOT_PATH}/tools/buildScripts/buildLibrary.sh g++ "${PROJECT_FOLDERS}" ${TEMP_DIR} "application" "${COMPILER_FLAGS}" CLEAN
- if [ $? -ne 0 ]
- then
- exit 1
- fi
- # Select the base libraries needed by the framework itself
- BASELIBS="-lm -pthread"
- # Select window manager to compile and libraries to link
- if [ ${WINDOW_MANAGER} = "NONE" ]
- then
- # Embedded/terminal mode
- WINDOW_SOURCE=${ROOT_PATH}/windowManagers/NoWindow.cpp
- LIBS="${BASELIBS} ${LINKER_FLAGS}"
- else
- # Desktop GUI mode
- WINDOW_SOURCE=${ROOT_PATH}/windowManagers/${WINDOW_MANAGER}Window.cpp
- LIBS="${BASELIBS} ${LINKER_FLAGS} -l${WINDOW_MANAGER}"
- fi
- echo "Compiling window manager (${WINDOW_SOURCE})"
- g++ ${COMPILER_FLAGS} -Wall -c ${WINDOW_SOURCE} -o ${TEMP_DIR}/NativeWindow.o
- if [ $? -ne 0 ]
- then
- exit 1
- fi
- echo "Linking application with libraries (${LIBS})"
- # Main must exist in the first library when linking
- g++ ${TEMP_DIR}/application.a ${TEMP_DIR}/NativeWindow.o ${LIBS} ${TEMP_DIR}/dfpsr.a -o ${TARGET_FILE}
- if [ $? -ne 0 ]
- then
- exit 1
- fi
|