explicitly call out that calling game functions defined in F4SE code … #42
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
name: testbuild | |
on: [push] | |
jobs: | |
run-testbuild: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
path: f4se | |
- uses: actions/checkout@v2 | |
with: | |
path: common | |
repository: ianpatt/common | |
- run: cmake -B common/build -S common -DCMAKE_INSTALL_PREFIX=extern common | |
- run: cmake --build common/build --config Release --target install | |
- run: cmake -B f4se/build -S f4se -DCMAKE_INSTALL_PREFIX=extern f4se | |
- run: cmake --build f4se/build --config Release |