Skip to content

Commit

Permalink
Update gotcha_config.h.in
Browse files Browse the repository at this point in the history
  • Loading branch information
hariharan-devarajan authored May 30, 2024
1 parent cef7dd5 commit e02e987
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/gotcha_config.h.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef GOTCHA_CONFIG_H
#define GOTCHA_CONFIG_H

#define GOTCHA_GET_VERSION(MAJOR, MINOR, PATCH) MAJOR * 100000 + MINOR * 100 + PATCH
#define GOTCHA_GET_VERSION(MAJOR, MINOR, PATCH) (MAJOR * 100000 + MINOR * 100 + PATCH)
#define GOTCHA_VERSION (GOTCHA_GET_VERSION @GOTCHA_VERSION@)
#define GOTCHA_VERSION_MAJOR (GOTCHA_VERSION / 100000)
#define GOTCHA_VERSION_MINOR ((GOTCHA_VERSION / 100) % 1000)
Expand Down

0 comments on commit e02e987

Please sign in to comment.