Skip to content

Commit

Permalink
config.hpp.in: remove whitespace from version macros
Browse files Browse the repository at this point in the history
The whitespace between the `@` characters seems
to prevent cmake from matching the variable names
when configuring the version number macros.

Signed-off-by: Steve Peters <[email protected]>
  • Loading branch information
scpeters authored Jun 28, 2024
1 parent ed209b2 commit 40b062b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dart/config.hpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
#pragma once

/* Version number */
#define DART_MAJOR_VERSION @DART_MAJOR_VERSION @
#define DART_MINOR_VERSION @DART_MINOR_VERSION @
#define DART_PATCH_VERSION @DART_PATCH_VERSION @
#define DART_MAJOR_VERSION @DART_MAJOR_VERSION@
#define DART_MINOR_VERSION @DART_MINOR_VERSION@
#define DART_PATCH_VERSION @DART_PATCH_VERSION@

#define DART_VERSION "@DART_VERSION@"
#define DART_DESCRIPTION "@DART_PKG_DESC@"
Expand Down

0 comments on commit 40b062b

Please sign in to comment.