-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9a35fba
commit 2a9d762
Showing
3 changed files
with
12 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,6 +61,11 @@ jobs: | |
|
||
- uses: seanmiddleditch/gha-setup-ninja@master | ||
|
||
- name: update apt | ||
shell: bash | ||
run: | | ||
sudo apt update | ||
- name: install glfw dependencies | ||
shell: bash | ||
run: | | ||
|
@@ -73,6 +78,11 @@ jobs: | |
sudo apt-get install -y libxmu-dev libxi-dev libgl-dev libglx-dev | ||
sudo apt-get install -y libx11-dev | ||
- name: install openal dependencies | ||
shell: bash | ||
run: | | ||
sudo apt-get install -y libpulse-dev portaudio19-dev libasound2-dev libjack-dev libpipewire-0.3-dev qtbase5-dev libdbus-1-dev | ||
- name: install Vulkan SDK | ||
uses: humbletim/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,2 @@ | ||
set(FLAPPYOWL_APP_ICON_RESOURCE) | ||
|
||
if (TARGET_WINDOWS) | ||
set(FLAPPYOWL_APP_ICON_RESOURCE "${CMAKE_CURRENT_SOURCE_DIR}/owl.rc") | ||
endif () | ||
|
||
set(FLAPPYOWL_APP_ICON_RESOURCE "${CMAKE_CURRENT_SOURCE_DIR}/owl.rc") | ||
wmoge_game(flappyowl main.cpp ${FLAPPYOWL_APP_ICON_RESOURCE}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
set(GAME_NAME template) | ||
|
||
set(GAME_APP_ICON_RESOURCE) | ||
|
||
if (TARGET_WINDOWS) | ||
set(GAME_APP_ICON_RESOURCE "${CMAKE_CURRENT_SOURCE_DIR}/wmoge.rc") | ||
endif () | ||
|
||
set(GAME_APP_ICON_RESOURCE "${CMAKE_CURRENT_SOURCE_DIR}/wmoge.rc") | ||
wmoge_game(${GAME_NAME} main.cpp ${GAME_APP_ICON_RESOURCE}) |