From 07f3557fb8cba03589bb2350dc14184f058c7ea4 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Wed, 1 Feb 2017 11:42:03 +0100 Subject: [PATCH] cmake: fix efl version number We are in the merge window for 1.19 so our number is actually 1.18.99 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b59d4d6e26..ff29bed9dc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/helpers") include(GNUInstallDirs) include(EflMacros) -EFL_PROJECT(1.19.99) +EFL_PROJECT(1.18.99) if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR}) message(FATAL_ERROR "In-source builds not allowed. Use: mkdir -p build && cmake -H. -Bbuild")