Skip to content

Commit

Permalink
Fix finding JSI folder in shermes/stable
Browse files Browse the repository at this point in the history
Reviewed By: neildhar

Differential Revision: D60396839

fbshipit-source-id: a8fc9bc5376ebae4b7dc8b92773877ad052f8b1f
  • Loading branch information
lavenzg authored and facebook-github-bot committed Jul 29, 2024
1 parent 0103fa2 commit 57507c2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -656,6 +656,8 @@ elseif(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/API/jsi)
set(HERMES_JSI_DIR ${CMAKE_CURRENT_SOURCE_DIR}/API/jsi)
elseif(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/../jsi)
set(HERMES_JSI_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../jsi)
elseif(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/../../jsi)
set(HERMES_JSI_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../../jsi)
else()
message(FATAL_ERROR "Unable to find jsi.")
endif()
Expand Down

0 comments on commit 57507c2

Please sign in to comment.