Fix constant name for version

This commit is contained in:
2024-02-01 18:56:27 +01:00
parent cfbeaa8f9c
commit d211be1982

View File

@@ -1,6 +1,6 @@
#include <spdlog.h>
#include <spdlog/spdlog.h>
int main (int, char**) {
spdlog::info("shmem version {}", PROJECT_VERSION);
int main(int, char**) {
spdlog::info("shmem version {}", PROJ_VERSION);
return 0;
}