mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-15 17:25:06 +00:00
Merge branch 'master' of github.com:tildearrow/furnace
This commit is contained in:
commit
8ccd465a1b
2 changed files with 116 additions and 3 deletions
103
.github/workflows/build.yml
vendored
Normal file
103
.github/workflows/build.yml
vendored
Normal file
|
@ -0,0 +1,103 @@
|
|||
name: Build furnace
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: master
|
||||
pull_request:
|
||||
branches: master
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
env:
|
||||
BUILD_TYPE: Release
|
||||
|
||||
jobs:
|
||||
build:
|
||||
strategy:
|
||||
matrix:
|
||||
config:
|
||||
- { name: 'Windows MSVC', os: windows-latest, compiler: msvc, shell: bash }
|
||||
- { name: 'Windows MinGW', os: windows-latest, compiler: mingw, shell: 'msys2 {0}' }
|
||||
- { name: 'macOS', os: macos-latest, shell: bash }
|
||||
- { name: 'Ubuntu', os: ubuntu-18.04, shell: bash }
|
||||
fail-fast: false
|
||||
|
||||
name: ${{ matrix.config.name }}
|
||||
runs-on: ${{ matrix.config.os }}
|
||||
defaults:
|
||||
run:
|
||||
shell: ${{ matrix.config.shell }}
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
- name: Setup Toolchain [Windows MSVC]
|
||||
if: ${{ runner.os == 'Windows' && matrix.config.compiler == 'msvc' }}
|
||||
uses: seanmiddleditch/gha-setup-vsdevenv@v3
|
||||
|
||||
- name: Setup Toolchain [Windows MinGW]
|
||||
if: ${{ runner.os == 'Windows' && matrix.config.compiler == 'mingw' }}
|
||||
uses: msys2/setup-msys2@v2
|
||||
with:
|
||||
msystem: MINGW64
|
||||
update: true
|
||||
install: |
|
||||
mingw-w64-x86_64-toolchain
|
||||
mingw-w64-x86_64-cmake
|
||||
make
|
||||
|
||||
- name: Install Dependencies [macOS]
|
||||
if: ${{ runner.os == 'macOS' }}
|
||||
run: |
|
||||
export HOMEBREW_NO_INSTALL_CLEANUP=1
|
||||
brew update
|
||||
brew install \
|
||||
pkg-config \
|
||||
sdl2 \
|
||||
libsndfile \
|
||||
zlib \
|
||||
jack
|
||||
|
||||
- name: Install Dependencies [Ubuntu]
|
||||
if: ${{ runner.os == 'Linux' }}
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt install \
|
||||
libsdl2-dev \
|
||||
libsndfile1-dev \
|
||||
zlib1g-dev \
|
||||
libjack-jackd2-dev
|
||||
|
||||
- name: Configure
|
||||
run: |
|
||||
export CMAKE_EXTRA_ARGS=()
|
||||
if [ '${{ runner.os }}' == 'Windows' ]; then
|
||||
if [ '${{ matrix.config.compiler }}' == 'mingw' ]; then
|
||||
CMAKE_EXTRA_ARGS+=('-G' 'MSYS Makefiles')
|
||||
fi
|
||||
fi
|
||||
|
||||
cmake \
|
||||
-B ${PWD}/build \
|
||||
-DCMAKE_INSTALL_PREFIX=${PWD}/target \
|
||||
-DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} \
|
||||
"${CMAKE_EXTRA_ARGS[@]}"
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
export VERBOSE=1
|
||||
cmake \
|
||||
--build ${PWD}/build \
|
||||
--config ${{ env.BUILD_TYPE }} \
|
||||
--parallel 2
|
||||
|
||||
- name: Install
|
||||
run: |
|
||||
cmake \
|
||||
--install ${PWD}/build \
|
||||
--config ${{ env.BUILD_TYPE }}
|
|
@ -181,11 +181,18 @@ if (WIN32)
|
|||
list(APPEND ENGINE_SOURCES res/furnace.rc)
|
||||
endif()
|
||||
|
||||
set(USED_SOURCES ${ENGINE_SOURCES} ${AUDIO_SOURCES} src/main.cpp)
|
||||
|
||||
if (BUILD_GUI)
|
||||
add_executable(furnace ${ENGINE_SOURCES} ${AUDIO_SOURCES} ${GUI_SOURCES} src/main.cpp)
|
||||
list(APPEND USED_SOURCES ${GUI_SOURCES})
|
||||
if (MSVC)
|
||||
add_executable(furnace WIN32 ${USED_SOURCES})
|
||||
else()
|
||||
add_executable(furnace ${USED_SOURCES})
|
||||
endif()
|
||||
target_compile_definitions(furnace PUBLIC HAVE_GUI)
|
||||
else()
|
||||
add_executable(furnace ${ENGINE_SOURCES} ${AUDIO_SOURCES} src/main.cpp)
|
||||
add_executable(furnace ${USED_SOURCES})
|
||||
endif()
|
||||
|
||||
if (DEVENDOR_LIBRARIES)
|
||||
|
@ -200,7 +207,10 @@ if (HAVE_JACK)
|
|||
endif()
|
||||
|
||||
if (WIN32)
|
||||
target_link_libraries(furnace shlwapi -static)
|
||||
target_link_libraries(furnace shlwapi)
|
||||
if (NOT MSVC)
|
||||
target_link_libraries(furnace -static)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
install(TARGETS furnace RUNTIME DESTINATION bin)
|
||||
|
|
Loading…
Reference in a new issue