Skip to content

Commit

Permalink
add raylib to build yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
savaughn committed Sep 26, 2023
1 parent fbd165a commit 02b01bf
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Build and Test
on:
push:
branches:
- v2/main
- main

jobs:
build:
Expand All @@ -22,6 +22,11 @@ jobs:
cmake .
make
- name: Build raylib
run: |
cd deps/raylib/src/
make PLATFORM=PLATFORM_DESKTOP
- name: Build Project
run: |
make all
Expand Down Expand Up @@ -64,7 +69,7 @@ jobs:
mkdir -p "${BUILD_DIR}/PokeromTrader.app/Contents/Resources"
# Copy the executable to the .app bundle
cp "pokeromtrader.out" "${MACOS_DESTINATION}/${APP_BUNDLE_EXECUTABLE}"
cp "pokeromtrader" "${MACOS_DESTINATION}/${APP_BUNDLE_EXECUTABLE}"
# Create Info.plist file
echo '<?xml version="1.0" encoding="UTF-8"?>' > "${INFO_PLIST}"
Expand Down

0 comments on commit 02b01bf

Please sign in to comment.