From 7b246103d8773fece3906490692e1c76b09e1e68 Mon Sep 17 00:00:00 2001 From: richard Date: Thu, 7 Oct 2021 23:15:29 +0100 Subject: [PATCH] change build options to include 'all' formats --- .github/workflows/build.yml | 4 ++-- version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 691abfe..b162258 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -84,7 +84,7 @@ jobs: cd raylib-c mkdir build cd build - cmake -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release .. + cmake -DINCLUDE_EVERYTHING=on -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release .. make -j2 sudo make install - name: Build raylib-python-cffi @@ -131,7 +131,7 @@ jobs: cd raylib-c mkdir build cd build - cmake -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release .. + cmake -DINCLUDE_EVERYTHING=on -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release .. msbuild raylib.sln /target:raylib /property:Configuration=Release copy raylib\Release\raylib.lib ..\.. cd ..\.. diff --git a/version.py b/version.py index 3affcf9..7c942ea 100644 --- a/version.py +++ b/version.py @@ -1 +1 @@ -__version__ = "3.7.0.post8" \ No newline at end of file +__version__ = "3.7.0.post9" \ No newline at end of file