From 21a895254bc08f111b5173f8b6b85f8271935020 Mon Sep 17 00:00:00 2001 From: Renato Araujo Oliveira Filho Date: Tue, 6 Nov 2012 12:57:58 -0300 Subject: Fixed string comparation on cmake files. --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index eca9ed0..3cd501b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -35,9 +35,10 @@ add_subdirectory(libqmenumodel) if(NOT DBUS_RUNNER) message(STATUS "dbus-test-runner not found tests disabled.") else() - if(CMAKE_SYSTEM_PROCESSOR EQUAL "armv7l") + if(CMAKE_SYSTEM_PROCESSOR STREQUAL "armv7l") message(STATUS "Current version of qemu crashes during the tests. We will skip it for now.") else() + message(STATUS "Enable tests for: ${CMAKE_SYSTEM_PROCESSOR}") enable_testing() add_subdirectory(tests) endif() -- cgit v1.2.3