Skip to content

Commit

Permalink
Example 1.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
DrTimothyAldenDavis committed Nov 25, 2023
1 parent f9051ae commit c3e9f40
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Example/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
cmake_minimum_required ( VERSION 3.20 )

# cmake inserts the date and version number into Include/my.h:
set ( MY_DATE "Oct 23, 2023" )
set ( MY_DATE "Nov 30, 2023" )
set ( MY_VERSION_MAJOR 1 )
set ( MY_VERSION_MINOR 4 )
set ( MY_VERSION_PATCH 3 )
set ( MY_VERSION_PATCH 4 )

message ( STATUS "Building MY library version: v"
${MY_VERSION_MAJOR}.
Expand Down Expand Up @@ -61,13 +61,13 @@ project ( my
#-------------------------------------------------------------------------------

# look for all SuiteSparse packages:
find_package ( SuiteSparse_config 7.3.0 REQUIRED )
find_package ( AMD 3.2.1 REQUIRED )
find_package ( SuiteSparse_config 7.4.0 REQUIRED )
find_package ( AMD 3.2.2 REQUIRED )
find_package ( BTF 2.2.1 REQUIRED )
find_package ( CAMD 3.2.1 REQUIRED )
find_package ( CAMD 3.2.2 REQUIRED )
find_package ( CCOLAMD 3.2.1 REQUIRED )
find_package ( COLAMD 3.2.1 REQUIRED )
find_package ( CHOLMOD 5.0.0 REQUIRED )
find_package ( CHOLMOD 5.1.0 REQUIRED )
find_package ( CXSparse 4.2.1 REQUIRED )
find_package ( GraphBLAS 8.2.1 )
find_package ( KLU 2.2.2 REQUIRED )
Expand Down
4 changes: 2 additions & 2 deletions Example/Include/my.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
// file, since it is constructed from Config/my.h.in by cmake.

// version and date for example user library
#define MY_DATE "Oct 23, 2023"
#define MY_DATE "Nov 30, 2023"
#define MY_MAJOR_VERSION 1
#define MY_MINOR_VERSION 4
#define MY_PATCH_VERSION 3
#define MY_PATCH_VERSION 4

#ifdef __cplusplus
extern "C" {
Expand Down

0 comments on commit c3e9f40

Please sign in to comment.