File tree 2 files changed +20
-1
lines changed 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ sources = [
17
17
" https://github.com/phracker/MacOSX-SDKs/releases/download/10.15/MacOSX10.13.sdk.tar.xz" ,
18
18
" a3a077385205039a7c6f9e2c98ecdf2a720b2a819da715e03e0630c75782c1e4"
19
19
),
20
- DirectorySource (" ./ bundled/ " )
20
+ DirectorySource (joinpath ( @__DIR__ , " bundled" ) )
21
21
]
22
22
23
23
# Bash recipe for building across all platforms
Original file line number Diff line number Diff line change
1
+ --- papilo/binaries/CMakeLists.txt 2024-12-26 02:45:23.608452403 +0000
2
+ +++ papilo/binaries/CMakeLists.txt 2024-12-26 02:45:29.320347256 +0000
3
+ @@ -76,6 +76,17 @@
4
+ set(PAPILO_HAVE_ROUNDINGSAT 0)
5
+ endif()
6
+
7
+ + # Enable the Fortran language support when the clusol target is included.
8
+ + # Even though this was done in the papilo CMake to create the target, it must be
9
+ + # done here as well, since the language support is contained to the calling directory
10
+ + # and lower, and since the papilo/binaries CMake file can be called from the top-level
11
+ + # CMake, which doesn't have Fortran language enabled, Fortran might not be enabled here yet.
12
+ + if(TARGET clusol)
13
+ + include(CheckLanguage)
14
+ + check_language(Fortran)
15
+ + enable_language(Fortran)
16
+ + endif()
17
+ +
18
+ # Search again since we cannot rely on papilo/CMakeLists.txt having searched for Boost already.
19
+ find_package(Boost ${BOOST_MIN_VERSION} OPTIONAL_COMPONENTS iostreams program_options serialization)
You can’t perform that action at this time.
0 commit comments