Skip to content

Commit

Permalink
CMake: Compile vixl if ENABLE_VIXL_DISASSEMBLER is set
Browse files Browse the repository at this point in the history
  • Loading branch information
neobrain committed Jan 14, 2025
1 parent 8cfc016 commit 8a57fc5
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 8a57fc5

Please sign in to comment.