From 4619a78bb15cf3c974b33ee40afbb7b8cb242500 Mon Sep 17 00:00:00 2001 From: James Tomlinson Date: Mon, 24 Jun 2024 19:17:58 +0100 Subject: [PATCH] fix: Add another missing source file. --- coin-or-sys/build.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/coin-or-sys/build.rs b/coin-or-sys/build.rs index 4e0f43c1..92958688 100644 --- a/coin-or-sys/build.rs +++ b/coin-or-sys/build.rs @@ -382,7 +382,7 @@ fn compile_cgl() -> Vec { const CBC_SRC_PATH: &str = "vendor/Cbc/Cbc/src"; -const CBC_SRCS: [&str; 74] = [ +const CBC_SRCS: [&str; 75] = [ // Solver "Cbc_C_Interface.cpp", "CbcCbcParam.cpp", @@ -394,6 +394,7 @@ const CBC_SRCS: [&str; 74] = [ "CbcMipStartIO.cpp", "CbcLinked.cpp", "CbcLinkedUtils.cpp", + "unitTestClp.cpp", // Lib "CbcBranchAllDifferent.cpp", "CbcBranchCut.cpp",