Skip to content
Permalink
Browse files
Merge pull request #7613 from orbea/unittests
cmake: Conditionally build the unit tests.
  • Loading branch information
leoetlino committed Jan 16, 2019
2 parents e19ee2a + 1327772 commit 8d601b1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
@@ -32,6 +32,7 @@ option(ENABLE_HEADLESS "Enables running Dolphin as a headless variant" OFF)
option(ENABLE_ALSA "Enables ALSA sound backend" ON)
option(ENABLE_PULSEAUDIO "Enables PulseAudio sound backend" ON)
option(ENABLE_LLVM "Enables LLVM support, for disassembly" ON)
option(ENABLE_TESTS "Enables building the unit tests" ON)
option(USE_DISCORD_PRESENCE "Enables Discord Rich Presence, show the current game on Discord" ON)

# Maintainers: if you consider blanket disabling this for your users, please
@@ -720,8 +721,12 @@ include_directories("${PROJECT_BINARY_DIR}/Source/Core")
########################################
# Unit testing.
#
message(STATUS "Using static gtest from Externals")
add_subdirectory(Externals/gtest EXCLUDE_FROM_ALL)
if(ENABLE_TESTS)
message(STATUS "Using static gtest from Externals")
add_subdirectory(Externals/gtest EXCLUDE_FROM_ALL)
else()
message(STATUS "Unit tests are disabled")
endif()

########################################
# Process Dolphin source now that all setup is complete
@@ -39,7 +39,10 @@ add_subdirectory(Core)
if (ANDROID)
add_subdirectory(Android/jni)
endif()
add_subdirectory(UnitTests)

if (ENABLE_TESTS)
add_subdirectory(UnitTests)
endif()

if (DSPTOOL)
add_subdirectory(DSPTool)

0 comments on commit 8d601b1

Please sign in to comment.