From cb4124c775fe355219681f4d7b77ab20dc43e1b1 Mon Sep 17 00:00:00 2001 From: "Lori A. Burns" Date: Fri, 12 Jan 2024 15:22:55 -0500 Subject: [PATCH 1/3] Update CMakeLists.txt.export --- export/cmake/CMakeLists.txt.export | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/export/cmake/CMakeLists.txt.export b/export/cmake/CMakeLists.txt.export index 1908ff32f..6e8c0631a 100644 --- a/export/cmake/CMakeLists.txt.export +++ b/export/cmake/CMakeLists.txt.export @@ -8,7 +8,7 @@ project(Libint LANGUAGES CXX C) # Set Libint version =================================================================================================== set(LIBINT_MAJOR_VERSION 2) set(LIBINT_MINOR_VERSION 8) -set(LIBINT_MICRO_VERSION 1) +set(LIBINT_MICRO_VERSION 1) # Sync this with python/CMakeLists.txt set(LIBINT_BUILDID ) set(LIBINT_VERSION "${LIBINT_MAJOR_VERSION}.${LIBINT_MINOR_VERSION}.${LIBINT_MICRO_VERSION}") if (LIBINT_BUILDID) From 1a747e9c49d322e8f83ed3b8c9bf2018e5d323be Mon Sep 17 00:00:00 2001 From: "Lori A. Burns" Date: Fri, 12 Jan 2024 15:24:55 -0500 Subject: [PATCH 2/3] Update CMakeLists.txt --- python/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt index 5511d99d5..1a808dbb3 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -5,6 +5,11 @@ else() endif() cmake_policy(SET CMP0079 NEW) +if(NOT DEFINED LIBINT_VERSION) + # for indep bld of project(libint2-python), version not available from project(Libint2) + set(LIBINT_VERISON "2.8.1") # for version for setup.py from libtool+cmake +endif() + project(libint2-python) if (NOT TARGET Python::Module) From 3341dab90471b6853c0471ac90b15e66c024f5f9 Mon Sep 17 00:00:00 2001 From: "Lori A. Burns" Date: Fri, 12 Jan 2024 16:03:53 -0500 Subject: [PATCH 3/3] Update python/CMakeLists.txt --- python/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt index 1a808dbb3..fa0aa85c9 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -7,7 +7,7 @@ cmake_policy(SET CMP0079 NEW) if(NOT DEFINED LIBINT_VERSION) # for indep bld of project(libint2-python), version not available from project(Libint2) - set(LIBINT_VERISON "2.8.1") # for version for setup.py from libtool+cmake + set(LIBINT_VERSION "2.8.1") # for version for setup.py from libtool+cmake endif() project(libint2-python)