From 4beba403133db3f9ff06bed912582ea2d7afcf2e Mon Sep 17 00:00:00 2001 From: = <=> Date: Wed, 3 Dec 2025 20:05:02 +0100 Subject: [PATCH] Fix CMakeLists.txt for proper build --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index f23ee77..e5c533f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,11 +11,13 @@ set(SOURCE_FILES headers/Interpreter.h headers/Problem.h headers/Simplex.h + headers/CuttingPlane.h sources/BranchBound.cpp sources/Exception.cpp sources/Interpreter.cpp sources/Problem.cpp sources/Simplex.cpp + sources/CuttingPlane.cpp main.cpp) add_executable(ILP ${SOURCE_FILES})