Skip to content

Commit

Permalink
Update CMakeLists.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
vsoftco committed Nov 28, 2023
1 parent e82d390 commit 911d52e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tools/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ add_custom_target(tools COMMENT "Build all binary tools.")

set(BUILD_GRID_SYNTH OFF)
if (MSVC)
# gmp, gmpxx
find_package(PkgConfig)
if (PkgConfig_FOUND)
pkg_search_module(gmp)
pkg_search_module(gmpxx)
# gmp, gmpxx
pkg_search_module(GMP gmp)
pkg_search_module(GMPXX gmpxx)
if (GMP_FOUND)
set(BUILD_GRID_SYNTH ON)
add_compile_options("-DEXPR_GMP")
Expand Down

0 comments on commit 911d52e

Please sign in to comment.