Skip to content

Commit

Permalink
Merge pull request FEX-Emu#4053 from Sonicadvance1/disable_vixl_compi…
Browse files Browse the repository at this point in the history
…ling

CMake: Disable vixl compiling if not enabled
  • Loading branch information
Sonicadvance1 authored Sep 10, 2024
2 parents b4c797c + 0c3eb41 commit f99900b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,10 @@ if (BUILD_TESTS)
set(COMPILE_VIXL_DISASSEMBLER TRUE)
endif()

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

if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
# This means we were attempted to get compiled with GCC
Expand Down

0 comments on commit f99900b

Please sign in to comment.