Skip to content

Commit

Permalink
Again.
Browse files Browse the repository at this point in the history
  • Loading branch information
dfaranha committed May 9, 2024
1 parent 3ac43b7 commit 21118fd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/gmp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,19 @@ jobs:
config:
- {
name: "Windows Latest - MinGW",
# artifact: "windows-mingw.tar.xz",
os: windows-latest,
cc: "gcc"
}
- {
name: "Ubuntu Latest - GCC",
artifact: "linux-gcc.tar.xz",
os: ubuntu-latest,
cc: "gcc",
}
- {
name: "Ubuntu Latest - Clang",
artifact: "linux-clang.tar.xz",
os: ubuntu-latest,
cc: "clang",

}
- {
name: "MacOS Latest",
Expand Down Expand Up @@ -62,6 +60,7 @@ jobs:
cmake
gmp
gmp-devel
mingw-w64-x86_64-gmp
update: true

- name: Run CMake (MingW)
Expand Down
3 changes: 3 additions & 0 deletions cmake/gmp.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ else(GMP_FOUND)
if(NOT EXISTS "/usr/include/gmp.h")
message(STATUS "Could NOT find GMP headers")
endif()
if(NOT EXISTS "/mingw64/include/gmp.h")
message(STATUS "Could NOT find GMP headers")
endif()
if(NOT GMP_LIBRARIES)
message(STATUS "Could NOT find GMP library")
endif()
Expand Down

0 comments on commit 21118fd

Please sign in to comment.