We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 928f4a5 commit 167cb65Copy full SHA for 167cb65
CMakeLists.txt
@@ -1,5 +1,11 @@
1
cmake_minimum_required(VERSION 3.15 FATAL_ERROR)
2
3
+if(APPLE)
4
+ set(CMAKE_MACOSX_RPATH ON)
5
+ set(CMAKE_INSTALL_RPATH "@loader_path;@rpath;/opt/homebrew/lib")
6
+ set(CMAKE_OSX_DEPLOYMENT_TARGET "12.0")
7
+endif()
8
+
9
# ---- Project ----
10
project(RAYX VERSION 0.21.7)
11
if(MSVC)
@@ -67,6 +73,10 @@ if(APPLE)
67
73
link_libraries(${OpenMP_omp_LIBRARY})
68
74
endif()
69
75
76
77
+ set(HDF5_ROOT "/opt/homebrew/opt/hdf5")
78
+ find_package(HDF5 REQUIRED COMPONENTS C HL)
79
70
80
71
81
72
82
0 commit comments