vcpkg/ports/highs/fix-cmake-output.patch
2023-10-02 16:10:33 -07:00

25 lines
587 B
Diff

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 605a1e2..148c006 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -196,6 +196,7 @@ if(MSVC)
unsigned long y;
_BitScanReverse(&y, x);
_BitScanReverse64(&x, y);
+ __popcnt64(x);
return 0;
}"
HIGHS_HAVE_BITSCAN_REVERSE)
@@ -568,9 +569,9 @@ else(FAST_BUILD)
endif()
# Add tests in examples/tests
- add_subdirectory(examples)
+ #add_subdirectory(examples)
- add_subdirectory(app)
+ #add_subdirectory(app)
if(EXP)
add_executable(doctest)