>From 022a90efa56ed1dd6318d91cc958840c27d36ada Mon Sep 17 00:00:00 2001 From: Nikolaus Waxweiler Date: Sat, 7 Apr 2018 21:57:13 +0100 Subject: [PATCH 09/19] CMakeLists.txt: Cosmetic, move version declaration up. --- CMakeLists.txt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f5c2a4198..0debc9496 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -131,6 +131,9 @@ endif () project(freetype C) +set(VERSION_MAJOR "2") +set(VERSION_MINOR "9") +set(VERSION_PATCH "0") # SOVERSION scheme: CURRENT.AGE.REVISION # If there was an incompatible interface change: @@ -172,10 +175,6 @@ if (BUILD_FRAMEWORK) endif () -set(VERSION_MAJOR "2") -set(VERSION_MINOR "9") -set(VERSION_PATCH "0") - # Compiler definitions for building the library add_definitions(-DFT2_BUILD_LIBRARY) if (WIN32) -- 2.14.3