Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
vsoftco committed Nov 29, 2023
1 parent 2762319 commit 0696b10
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
# os: [ ubuntu-latest, macos-latest, windows-latest ]
os: [ windows-latest ]
runs-on: ${{ matrix.os }}

steps:
Expand Down
4 changes: 2 additions & 2 deletions src/tools/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ if (MSVC)
find_package(PkgConfig)
if (PkgConfig_FOUND)
# gmp, gmpxx
pkg_search_module(GMP gmp IMPORTED_TARGET gmp)
pkg_search_module(GMPXX gmpxx IMPORTED_TARGET gmpxx)
pkg_check_modules(gmp IMPORTED_TARGET gmp)
pkg_check_modules(gmpxx IMPORTED_TARGET gmpxx)
if (GMP_FOUND AND GMPXX_FOUND)
set(BUILD_GRID_SYNTH ON)
add_compile_options("-DEXPR_GMP")
Expand Down
4 changes: 2 additions & 2 deletions unit_tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ if (MSVC)
find_package(PkgConfig REQUIRED)
if (PkgConfig_FOUND)
# gmp, gmpxx
pkg_search_module(GMP gmp)
pkg_search_module(GMPXX gmpxx)
pkg_check_modules(gmp IMPORTED_TARGET gmp)
pkg_check_modules(gmpxx IMPORTED_TARGET gmpxx)
if (GMP_FOUND AND GMPXX_FOUND)
set(BUILD_GRID_SYNTH ON)
add_compile_options("-DEXPR_GMP")
Expand Down

0 comments on commit 0696b10

Please sign in to comment.