Set cmake_minimum_required to 3.5 for all dependencies to build with cmake 4
This commit is contained in:
parent
db4f210098
commit
b325a2ce7c
4 changed files with 100 additions and 4 deletions
18
PKGBUILD
18
PKGBUILD
|
@ -13,9 +13,13 @@ makedepends=('cmake' 'extra-cmake-modules' 'git' 'glew' 'm4' 'ninja' 'pkgconf' '
|
|||
options=('!debug' '!emptydirs')
|
||||
provides=("orca-slicer")
|
||||
source=("$pkgname::git+https://github.com/SoftFever/OrcaSlicer.git#tag=v$pkgver"
|
||||
"https://github.com/Open-Cascade-SAS/OCCT/commit/7236e83dcc1e7284e66dc61e612154617ef715d6.patch")
|
||||
"https://github.com/Open-Cascade-SAS/OCCT/commit/7236e83dcc1e7284e66dc61e612154617ef715d6.patch"
|
||||
"cmake-min-version.patch"
|
||||
"wxWidgets-cmake-min-version.patch")
|
||||
b2sums=('543653c5769e2f022877608c14bad64ea05dbc30d41a58dc1a82eaca6615c0183f7573ced790a263b8509f6a4abdfa6b259ae0701a2468e10c15eb40d1926555'
|
||||
'cc7791841533e07787a4921b688fdd885782a67320936d445ad04102a68e8e044b5bf52a58d987d158ae522ae4f02a56a3525ccfd1831ef6a3b6459be14bd408')
|
||||
'cc7791841533e07787a4921b688fdd885782a67320936d445ad04102a68e8e044b5bf52a58d987d158ae522ae4f02a56a3525ccfd1831ef6a3b6459be14bd408'
|
||||
'562dcd07530faef0d9fdddf1e009075f67105c8239e4b1402cd890f7a89be8b11671dd6ecc7b55a155f2d05247070bb0b8ff84f2170ce2454ab818018be80e48'
|
||||
'1459ce126dd80a891006d2c40a001e75dc146ac9eb6ad8e975a3e4672ebb914baabecd8a4048742fab03e2820242f614449dd23a8e721bd5c945c8765e986a5a')
|
||||
|
||||
prepare() {
|
||||
# C++20 disallows the use of the Point<T> syntax in the constructor
|
||||
|
@ -27,6 +31,10 @@ prepare() {
|
|||
# Fix xgettext: case-sensitive mismatches
|
||||
sed -i 's|src/slic3r/GUI/AMSMappingPopup.cpp|src/slic3r/GUI/AmsMappingPopup.cpp|g' $pkgname/localization/i18n/list.txt
|
||||
sed -i 's|https://www.mpfr.org/mpfr-current/mpfr-4.2.1.tar.bz2|https://www.mpfr.org/mpfr-4.2.1/mpfr-4.2.1.tar.bz2|' $pkgname/deps/MPFR/MPFR.cmake
|
||||
# Set cmake_minimum_required to 3.5 for all dependencies
|
||||
cp wxWidgets-cmake-min-version.patch $pkgname/deps/wxWidgets/wxWidgets-cmake-min-version.patch
|
||||
cd $pkgname
|
||||
git apply ../cmake-min-version.patch
|
||||
}
|
||||
|
||||
build() {
|
||||
|
@ -37,7 +45,8 @@ build() {
|
|||
-G Ninja \
|
||||
-S deps \
|
||||
-B deps/build \
|
||||
-DDEP_WX_GTK3=ON
|
||||
-DDEP_WX_GTK3=ON \
|
||||
-DCMAKE_POLICY_VERSION_MINIMUM=3.5
|
||||
ninja -C deps/build
|
||||
|
||||
cmake \
|
||||
|
@ -50,7 +59,8 @@ build() {
|
|||
-DSLIC3R_STATIC=1 \
|
||||
-DORCA_TOOLS=1 \
|
||||
-DSLIC3R_FHS=1 \
|
||||
-DSLIC3R_GTK=3
|
||||
-DSLIC3R_GTK=3 \
|
||||
-DCMAKE_POLICY_VERSION_MINIMUM=3.5
|
||||
ninja -C build
|
||||
|
||||
# add localizations
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue