Skip to content

Commit

Permalink
Fix version macros
Browse files Browse the repository at this point in the history
  • Loading branch information
masterleinad committed Feb 9, 2023
1 parent a45165d commit 1d228fa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cmake/KokkosCore_config.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
// KOKKOS_VERSION % 100 is the patch level
// KOKKOS_VERSION / 100 % 100 is the minor version
// KOKKOS_VERSION / 10000 is the major version
#cmakedefine KOKKOS_VERSION @KOKKOS_VERSION@
#cmakedefine KOKKOS_VERSION_MAJOR @KOKKOS_VERSION_MAJOR@
#cmakedefine KOKKOS_VERSION_MINOR @KOKKOS_VERSION_MINOR@
#cmakedefine KOKKOS_VERSION_PATCH @KOKKOS_VERSION_PATCH@
#define KOKKOS_VERSION @KOKKOS_VERSION@
#define KOKKOS_VERSION_MAJOR @KOKKOS_VERSION_MAJOR@
#define KOKKOS_VERSION_MINOR @KOKKOS_VERSION_MINOR@
#define KOKKOS_VERSION_PATCH @KOKKOS_VERSION_PATCH@

/* Execution Spaces */
#cmakedefine KOKKOS_ENABLE_SERIAL
Expand Down

0 comments on commit 1d228fa

Please sign in to comment.