From 8fe60c29fb729d3b0f92bdfc8720a1eb8eb6dd52 Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Sat, 29 Apr 2023 10:31:12 -0400 Subject: [PATCH] Don't set the app version in the llmodel. --- llmodel/CMakeLists.txt | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/llmodel/CMakeLists.txt b/llmodel/CMakeLists.txt index 7f72599c..91c051e8 100644 --- a/llmodel/CMakeLists.txt +++ b/llmodel/CMakeLists.txt @@ -12,17 +12,6 @@ if(APPLE) endif() endif() -set(APP_VERSION_MAJOR 2) -set(APP_VERSION_MINOR 2) -set(APP_VERSION_PATCH 2) -set(APP_VERSION "${APP_VERSION_MAJOR}.${APP_VERSION_MINOR}.${APP_VERSION_PATCH}") - -# Generate a header file with the version number -configure_file( - "${CMAKE_CURRENT_SOURCE_DIR}/../cmake/config.h.in" - "${CMAKE_CURRENT_BINARY_DIR}/../config.h" -) - # Include the binary directory for the generated header file include_directories("${CMAKE_CURRENT_BINARY_DIR}")