diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-11-27 22:44:13 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-11-27 22:44:13 +0200 |
commit | 9fad4008ef8a720e11f6e97cca42ac3a4cd7cb95 (patch) | |
tree | 79ae6580ac39655e3868001a44b918e33fd1087f | |
parent | Merge pull request #2841 (diff) | |
parent | tests: disable libwallet_api_tests when BUILD_GUI_DEPS is not set (diff) | |
download | monero-9fad4008ef8a720e11f6e97cca42ac3a4cd7cb95.tar.xz |
Merge pull request #2863
37c1ce3b tests: disable libwallet_api_tests when BUILD_GUI_DEPS is not set (moneromooo-monero)
-rw-r--r-- | tests/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 762eee776..d0c89db46 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -87,7 +87,9 @@ add_subdirectory(unit_tests) add_subdirectory(difficulty) add_subdirectory(hash) add_subdirectory(net_load_tests) -add_subdirectory(libwallet_api_tests) +if (BUILD_GUI_DEPS) + add_subdirectory(libwallet_api_tests) +endif() # add_subdirectory(daemon_tests) |