mirror of
https://github.com/ttroy50/cmake-examples.git
synced 2025-12-18 20:24:35 +03:00
9 lines
193 B
C
9 lines
193 B
C
#ifndef __VER_H__
|
|
#define __VER_H__
|
|
|
|
// version variable that will be substituted by cmake
|
|
// This shows an example using the $ variable type
|
|
const char* ver = "${cf_example_VERSION}";
|
|
|
|
#endif
|