chat(build): fix incorrect APP_VERSION_BASE

Signed-off-by: Jared Van Bortel <jared@nomic.ai>
This commit is contained in:
Jared Van Bortel 2024-09-26 17:42:58 -04:00
parent 7b793d4435
commit 27478a7e00

View File

@ -3,8 +3,8 @@ cmake_minimum_required(VERSION 3.25) # for try_compile SOURCE_FROM_VAR
set(APP_VERSION_MAJOR 3)
set(APP_VERSION_MINOR 4)
set(APP_VERSION_PATCH 0)
set(APP_VERSION_BASE "${APP_VERSION_MAJOR}.${APP_VERSION_MINOR}.${APP_VERSION_PATCH}-dev0")
set(APP_VERSION "${APP_VERSION_BASE}")
set(APP_VERSION_BASE "${APP_VERSION_MAJOR}.${APP_VERSION_MINOR}.${APP_VERSION_PATCH}")
set(APP_VERSION "${APP_VERSION_BASE}-dev0")
project(gpt4all VERSION ${APP_VERSION_BASE} LANGUAGES CXX C)