Skip to content

Commit 51439ef

Browse files
authored
Merge pull request #260 from libigl/alecjacobson/fix-cmake-warnings
fix cmake warnings; bump libigl
2 parents c3a8ce4 + da3202d commit 51439ef

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ option(LIBIGL_RESTRICTED_TRIANGLE "Build target igl_restricted::triangle" ON)
4949
FetchContent_Declare(
5050
libigl
5151
GIT_REPOSITORY https://github.com/libigl/libigl.git
52-
GIT_TAG a221faf1e4bd571529ca2101c08bc2458579b1da
52+
GIT_TAG 788871103938ce92112714d11ea491e8e6b4d972
5353
)
5454
FetchContent_MakeAvailable(libigl)
5555

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,10 @@ expected.
7272

7373
Install whichever version of Python from the [official website](https://www.python.org/downloads/) and then run:
7474

75-
/Library/Frameworks/Python.framework/Versions/[version]/bin/python -m pip install cibuildwheel
75+
76+
/Library/Frameworks/Python.framework/Versions/3.11/bin/python3.11 -m venv venv-official-3.11
77+
source venv-official-3.11/bin/activate
78+
python -m pip install cibuildwheel
7679
CIBW_BUILD="cp311-*" python -m cibuildwheel --output-dir wheelhouse --platform macos
7780

7881
## Downloading all the artifacts

cmake/Warnings.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
################################################################################
2-
cmake_minimum_required(VERSION 2.8.12)
2+
cmake_minimum_required(VERSION 3.5)
33
################################################################################
44
# See comments and discussions here:
55
# http://stackoverflow.com/questions/5088460/flags-to-enable-thorough-and-verbose-g-warnings

0 commit comments

Comments
 (0)