Skip to content

Commit 7d5beda

Browse files
committed
add climits
1 parent e646930 commit 7d5beda

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,9 @@ endif()
189189

190190
# HiPO deps
191191
if(HIPO)
192-
if (WIN32)
193-
set(BUILD_SHARED_LIBS ON)
194-
endif()
192+
# if (WIN32)
193+
# set(BUILD_SHARED_LIBS ON)
194+
# endif()
195195
# find_package(METIS REQUIRED)
196196
# find_package(GKlib REQUIRED)
197197
# does not work with outdated CMake

highs/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ else()
192192
elseif(WIN32)
193193
target_link_libraries(highs OpenBLAS::OpenBLAS)
194194
target_link_libraries(highs metis)
195-
target_link_libraries(highs gklib)
195+
# target_link_libraries(highs gklib)
196196
else()
197197
# LINUX
198198
if(BLAS_LIB)
@@ -213,8 +213,8 @@ else()
213213
target_link_libraries(highs "${METIS_LIB}")
214214

215215
# GKlib
216-
target_include_directories(highs PRIVATE "${GKLIB_PATH}")
217-
target_link_libraries(highs "${GKLIB_LIB}")
216+
# target_include_directories(highs PRIVATE "${GKLIB_PATH}")
217+
# target_link_libraries(highs "${GKLIB_LIB}")
218218
endif()
219219

220220
endif()

highs/ipm/hipo/factorhighs/Analyse.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#include <fstream>
44
#include <iostream>
5-
#include <limits>
5+
#include <climits>
66
#include <random>
77
#include <stack>
88

0 commit comments

Comments
 (0)