summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Giles <giles@thaumas.net>2019-08-15 08:53:09 -0700
committerErik de Castro Lopo <erikd@mega-nerd.com>2019-08-16 06:59:42 +1000
commit88ddb5b59e092f12ca18b73857a15235caf07fa1 (patch)
tree3776f9f6f97d44fdfc824e2b0a8fd049ba4627e4
parent4ca0d85c5d0ea3e9d9afc4ac53b5187c9ab98689 (diff)
downloadflac-88ddb5b59e092f12ca18b73857a15235caf07fa1.tar.gz
Fix metaflac under ctest.
The 1.3.3 release didn't update the version number in the cmake build. It's too late to fix the release, but bringing the version number into sync allows the metaflac test which verifies the encoder's embedded version number to pass, giving us proper test feedback on other changes to the development tree.
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 66f4db24..d4578c5b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -4,7 +4,7 @@ if(NOT (CMAKE_BUILD_TYPE OR CMAKE_CONFIGURATION_TYPES OR DEFINED ENV{CFLAGS} OR
set(CMAKE_BUILD_TYPE Release CACHE STRING "Choose the type of build, options are: None Debug Release RelWithDebInfo")
endif()
-project(FLAC VERSION 1.3.2) # HOMEPAGE_URL "https://www.xiph.org/flac/")
+project(FLAC VERSION 1.3.3) # HOMEPAGE_URL "https://www.xiph.org/flac/")
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")