Changed build process to use an individual bin/<subfolder> for each target. This way each target has its own data folder and its own set of dlls.
10 lines
186 B
Bash
Executable File
10 lines
186 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Determine path to script
|
|
MY_PATH=`dirname "$0"`
|
|
|
|
cd $MY_PATH/..
|
|
|
|
# Build and run target
|
|
ninja -C build/Debug masterproject_"$1" && cd bin/"$1" && Debug/masterproject_"$1"
|