Mercurial > minori
view .builds/osx.yml @ 36:2743011a6042
*: mass update
formatted all source files, converted ALL instances of setStyleSheet() to
palettes and fonts (stylesheets suck), and I changed the clang-format file because
it wasn't working on my laptop for some reason.
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Thu, 21 Sep 2023 15:17:47 -0400 |
parents | 329b7921a6be |
children | 1a34fd7469b9 |
line wrap: on
line source
image: debian/stable packages: - cmake - clang - git - patch - python3 - libssl-dev - lzma-dev - libxml2-dev - xz - bzip2 - cpio - libbz2 - zlib1g-dev - llvm-dev - uuid-dev sources: - https://hg.sr.ht/~mrpapersonic/minori - https://github.com/tpoechtrager/osxcross tasks: - build: | cd osxcross/tarballs wget "https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX10.13.sdk.tar.xz" cd .. UNATTENDED=1 ./build.sh export PATH="$(pwd)/target/bin:$PATH" osxcross-macports -v install qt5-qtbase curl pkgconfig export PKG_CONFIG_PATH="$(pwd)/target/macports/pkgs/opt/local/lib/pkgconfig" cd ../minori mkdir build cd build cmake .. -G "Unix Makefiles" -DCMAKE_SYSTEM_NAME="Darwin" -DCMAKE_C_COMPILER="o64-clang" -DCMAKE_CXX_COMPILER="o64-clang++" -DCMAKE_FIND_ROOT_PATH="$(pwd)/../../osxcross/target/macports/pkgs/opt/local/" -DCMAKE_OSX_SYSROOT="$(pwd)/../../osxcross/target/SDK/MacOSX10.13.sdk/" make