Skip to content

Commit

Permalink
Merge pull request #4276 from neobrain/fix_vixl_tests
Browse files Browse the repository at this point in the history
CMake: Compile vixl if ENABLE_VIXL_DISASSEMBLER is set
  • Loading branch information
lioncash authored Jan 14, 2025
2 parents 8c02bd4 + 8a57fc5 commit a52dd71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ if (BUILD_TESTS)
set(COMPILE_VIXL_DISASSEMBLER TRUE)
endif()

if (COMPILE_VIXL_DISASSEMBLER OR ENABLE_VIXL_SIMULATOR)
if (COMPILE_VIXL_DISASSEMBLER OR ENABLE_VIXL_DISASSEMBLER OR ENABLE_VIXL_SIMULATOR)
add_subdirectory(External/vixl/)
include_directories(SYSTEM External/vixl/src/)
endif()
Expand Down

0 comments on commit a52dd71

Please sign in to comment.