vcpkg/ports/highs/fix-cmake-output.patch

21 lines
517 B
Diff
Raw Normal View History

diff --git a/CMakeLists.txt b/CMakeLists.txt
2023-10-03 07:10:33 +08:00
index 605a1e2..148c006 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
2023-10-03 07:10:33 +08:00
@@ -196,6 +196,7 @@ if(MSVC)
unsigned long y;
_BitScanReverse(&y, x);
_BitScanReverse64(&x, y);
+ __popcnt64(x);
return 0;
}"
2023-10-03 07:10:33 +08:00
HIGHS_HAVE_BITSCAN_REVERSE)
@@ -570,7 +572,6 @@ else(FAST_BUILD)
2023-10-03 07:10:33 +08:00
# Add tests in examples/tests
add_subdirectory(examples)
2023-10-03 07:10:33 +08:00
- add_subdirectory(app)
2023-10-03 07:10:33 +08:00
if(EXP)
add_executable(doctest)