-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
2 changed files
with
27 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Compile | ||
apt-get install cmake python3 qt5-default qtbase5-dev, qtchooser, qt5-qmake, qtbase5-dev-tools, libqt5svg5-dev | ||
pip3 install conan | ||
git clone https://github.com/JohnDTill/Forscape | ||
cd ./Forscape | ||
conan install --generator cmake_find_package --install-folder build/conan-dependencies app | ||
cmake -DCMAKE_BUILD_TYPE=Release -B build -S app | ||
cd build | ||
make | ||
|
||
# Run | ||
#./Forscape |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Build from source (ubuntu-latest gcc) | ||
on: push | ||
# on: | ||
# pull_request: | ||
# push: | ||
# branches: main | ||
jobs: | ||
build-and-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- id: permissions | ||
run: chmod +x "${GITHUB_WORKSPACE}/.github/workflows/build_from_source.sh" | ||
- id: build | ||
run: ${GITHUB_WORKSPACE}/.github/workflows/build_from_source.sh |