Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
ReenigneArcher committed May 13, 2024
1 parent 8de0b9f commit 814f0bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmake/compile_definitions/macos.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ set(MACOS_LINK_DIRECTORIES
/opt/local/lib
/usr/local/lib)

foreach(DIR ${MACOS_LINK_DIRECTORIES})
if(EXISTS ${DIR})
link_directories(${DIR})
foreach(dir ${MACOS_LINK_DIRECTORIES})
if(EXISTS ${dir})
link_directories(${dir})
endif()
endforeach()

Expand Down

0 comments on commit 814f0bc

Please sign in to comment.