File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -38,31 +38,31 @@ jobs:
3838 if : ${{ matrix.config == 'Release' }}
3939 run : |
4040 cd GKlib
41- make config shared=1 prefix=${{runner.workspace}}/installs
41+ make config prefix=${{runner.workspace}}/installs
4242 make
4343 make install
4444
4545 - name : Install GKlib Debug
4646 if : ${{ matrix.config == 'Debug' }}
4747 run : |
4848 cd GKlib
49- make config shared=1 prefix=${{runner.workspace}}/installs gdb=1 debug=1
49+ make config prefix=${{runner.workspace}}/installs gdb=1 debug=1
5050 make
5151 make install
5252
5353 - name : Install METIS Release
5454 if : ${{ matrix.config == 'Release'}}
5555 run : |
5656 cd METIS
57- make config shared=1 prefix=${{runner.workspace}}/installs
57+ make config prefix=${{runner.workspace}}/installs
5858 make
5959 make install
6060
6161 - name : Install METIS Debug
6262 if : ${{ matrix.config == 'Debug'}}
6363 run : |
6464 cd METIS
65- make config shared=1 prefix=${{runner.workspace}}/installs gdb=1 debug=1
65+ make config prefix=${{runner.workspace}}/installs gdb=1 debug=1
6666 make
6767 make install
6868
Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ else()
217217 endif (APPLE )
218218 else ()
219219 # BLA_VENDOR Specified
220- target_link_libraries (highs BLAS::BLAS)
220+ target_link_libraries (highs PRIVATE BLAS::BLAS)
221221
222222 string (TOLOWER "${BLAS_LIBRARIES} " blas_lower)
223223 if (blas_lower MATCHES "openblas" )
You can’t perform that action at this time.
0 commit comments