Skip to content

Commit

Permalink
Mac OSX test for conda build. Commenting out find_path() for qt6
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-dixon committed Nov 19, 2024
1 parent 5b95390 commit ac288ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions codebase/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,13 @@ if(APPLE)
if (Qt5_FOUND)
find_path(Qt5_DIR NAMES Qt5Config.cmake qt5-config.cmake HINTS ${MINIFORGE_ROOT} NO_DEFAULT_PATH)
elseif (Qt6_FOUND)
# find_path(Qt6_DIR NAMES Qt6Config.cmake qt6-config.cmake HINTS ${MINIFORGE_ROOT} NO_DEFAULT_PATH)
find_path(Qt6_DIR NAMES Qt6Config.cmake qt6-config.cmake HINTS ${MINIFORGE_ROOT} NO_DEFAULT_PATH)
endif(Qt5_FOUND)
else ()
if (Qt5_FOUND)
find_path(Qt5_DIR NAMES Qt5Config.cmake qt5-config.cmake HINTS /usr/local/Cellar/qt/*/lib/cmake/Qt5 /opt/homebrew/Cellar/qt/*/lib/cmake/Qt5 $ENV{HOME}/homebrew/Cellar/qt/*/lib/cmake/Qt5 NO_DEFAULT_PATH)
elseif (Qt6_FOUND)
# find_path(Qt6_DIR NAMES Qt6Config.cmake qt6-config.cmake HINTS /usr/local/Cellar/qt/*/lib/cmake/Qt6 /opt/homebrew/Cellar/qt/*/lib/cmake/Qt6 $ENV{HOME}/homebrew/Cellar/qt/*/lib/cmake/Qt6 NO_DEFAULT_PATH)
find_path(Qt6_DIR NAMES Qt6Config.cmake qt6-config.cmake HINTS /usr/local/Cellar/qt/*/lib/cmake/Qt6 /opt/homebrew/Cellar/qt/*/lib/cmake/Qt6 $ENV{HOME}/homebrew/Cellar/qt/*/lib/cmake/Qt6 NO_DEFAULT_PATH)
endif(Qt5_FOUND)
endif(DEFINED MAMBA_BUILD)
endif(APPLE)
Expand Down

0 comments on commit ac288ea

Please sign in to comment.