Fix logic bug in addition of -DKERNEL_MINIMAL_VERSION
[staging/xdg-launcher.git] / cmake / cmake.d / 04-build_options.cmake
index bc14ee6..18a1b17 100644 (file)
@@ -48,8 +48,9 @@ if (kernel_minimal_version)
        message (STATUS "${Cyan}-- Check kernel_minimal_version (found kernel version ${KERNEL_VERSION})${ColourReset}")
        if (KERNEL_VERSION VERSION_LESS ${kernel_minimal_version})
                message(WARNING "${Yellow}**** Warning: Some feature(s) require at least ${kernel_minimal_version}. Please use a recent kernel or source your SDK environment then clean and reconfigure your CMake project.${ColourReset}")
+       else (KERNEL_VERSION VERSION_LESS ${kernel_minimal_version})
+               add_definitions(-DKERNEL_MINIMAL_VERSION_OK)
        endif (KERNEL_VERSION VERSION_LESS ${kernel_minimal_version})
-       add_definitions(-DKERNEL_MINIMAL_VERSION_OK)
 endif(kernel_minimal_version)
 
 INCLUDE(FindPkgConfig)