Skip to content

Commit 5569716

Browse files
committed
Update default CMake option values
1 parent ccecf31 commit 5569716

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

‎.github/workflows/build.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
if: matrix.os == 'ubuntu-latest'
3838
- name: Build
3939
run: |
40-
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
40+
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DCOLUMNGENERATIONSOLVER_USE_CLP=ON
4141
cmake --build build --config Release --parallel
4242
cmake --install build --config Release --prefix install
4343
- name: Run tests
@@ -49,7 +49,7 @@ jobs:
4949
git checkout main
5050
- name: Build
5151
run: |
52-
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
52+
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DCOLUMNGENERATIONSOLVER_USE_CLP=ON
5353
cmake --build build --config Release --parallel
5454
cmake --install build --config Release --prefix install
5555
- name: Run tests

‎CMakeLists.txt‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ cmake_minimum_required(VERSION 3.15.0)
33
project(ColumnGenerationSolver LANGUAGES CXX)
44

55
# Solver options.
6-
option(COLUMNGENERATIONSOLVER_USE_CLP "Use CLP" ON)
7-
option(COLUMNGENERATIONSOLVER_USE_HIGHS "Use Highs" ON)
6+
option(COLUMNGENERATIONSOLVER_USE_CLP "Use CLP" OFF)
7+
option(COLUMNGENERATIONSOLVER_USE_HIGHS "Use Highs" OFF)
88
option(COLUMNGENERATIONSOLVER_USE_CPLEX "Use CPLEX" OFF)
99
option(COLUMNGENERATIONSOLVER_USE_XPRESS "Use Xpress" OFF)
1010

0 commit comments

Comments
 (0)