Skip to content

Commit

Permalink
Change PythonInterp to Python in cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
palenikm committed Jul 11, 2024
1 parent 7ae39e6 commit ca3575f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/build_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ jobs:
fail-fast: false
matrix:
config:
- {
name: "macOS Latest Release (Intel)",
os: macos-13,
build_type: "Release", cc: "clang", cxx: "clang++",
build_gen: "Unix Makefiles"
}
- {
name: "macOS Latest Release (Apple Silicon)",
os: macos-latest,
build_type: "Release", cc: "clang", cxx: "clang++",
build_gen: "Unix Makefiles"
}
# - {
# name: "macOS Latest Release (Intel)",
# os: macos-13,
# build_type: "Release", cc: "clang", cxx: "clang++",
# build_gen: "Unix Makefiles"
# }
# - {
# name: "macOS Latest Release (Apple Silicon)",
# os: macos-latest,
# build_type: "Release", cc: "clang", cxx: "clang++",
# build_gen: "Unix Makefiles"
# }
- {
name: "Windows Latest MSVC Release",
os: windows-latest,
Expand Down
2 changes: 1 addition & 1 deletion doc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ include (${TOP}/cmake/version.cmake)
string(TIMESTAMP DATE "%d-%m-%Y")
string(TIMESTAMP YEAR "%Y")

find_package(PythonInterp REQUIRED)
find_package(Python REQUIRED)
find_program(EPSTOPDF NAMES epstopdf )
find_program(PDFLATEX NAMES pdflatex )
find_program(MAKEINDEX NAMES makeindex )
Expand Down

0 comments on commit ca3575f

Please sign in to comment.