Compile the application if it isn't already compiled

master
Aadhavan Srinivasan 7 months ago
parent aea8f3dfd2
commit 3ab97b3853

@ -8,6 +8,12 @@ REL_DIR="$BASE_DIR/release/dist"
mkdir -p "$REL_DIR" mkdir -p "$REL_DIR"
# Set up the build directory
meson setup build/
# Build the application
meson compile -C build/
# Parse the output of the 'ldd' command, and create a file with the required DLL paths. # Parse the output of the 'ldd' command, and create a file with the required DLL paths.
ldd build/pong.exe | awk ' NF == 4 {print $3}' > "$BASE_DIR/tmp_file.txt" ldd build/pong.exe | awk ' NF == 4 {print $3}' > "$BASE_DIR/tmp_file.txt"

Loading…
Cancel
Save