diff options
author | Ratchanan Srirattanamet <ratchanan@ubports.com> | 2023-12-14 04:16:34 +0700 |
---|---|---|
committer | Ratchanan Srirattanamet <ratchanan@ubports.com> | 2023-12-14 04:16:34 +0700 |
commit | b7db65f03581cb95799410fa60044b9178c27db6 (patch) | |
tree | 42841432a39cef3f9a43e1271681b92263b7cf84 /tests | |
parent | fce2bb770d17a0f9487fd490eecf6c074c7a7273 (diff) | |
download | ayatana-indicator-display-b7db65f03581cb95799410fa60044b9178c27db6.tar.gz ayatana-indicator-display-b7db65f03581cb95799410fa60044b9178c27db6.tar.bz2 ayatana-indicator-display-b7db65f03581cb95799410fa60044b9178c27db6.zip |
Remove ENABLE_LOMIRI_FEATURES CMake flag
There's no longer any Lomiri-specific code in this repo, so remove the
flag.
The unit test actually works without the flag, so do include it without
the condition.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/CMakeLists.txt | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 3ce7fa3..81e083c 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -30,9 +30,7 @@ add_compile_options(${CXX_WARNING_ARGS}) add_test(cppcheck cppcheck --enable=all -USCHEMA_DIR --error-exitcode=2 --inline-suppr --library=qt -I${CMAKE_SOURCE_DIR} -i${CMAKE_SOURCE_DIR}/tests/utils/qmain.cpp -i${CMAKE_SOURCE_DIR}/tests/gmock ${CMAKE_SOURCE_DIR}/src ${CMAKE_SOURCE_DIR}/tests --suppress=missingIncludeSystem --suppress=uninitDerivedMemberVar --suppress=unmatchedSuppression --suppress=constParameter --suppress=unusedFunction --suppress=uselessOverride) -if (ENABLE_LOMIRI_FEATURES) - add_subdirectory (unit) -endif () +add_subdirectory (unit) set(COVERAGE_TEST_TARGETS ${COVERAGE_TEST_TARGETS} |