Files
cmake-examples/03-code-generation/configure-files/path.h.in
2015-11-28 13:07:32 +00:00

9 lines
193 B
C

#ifndef __PATH_H__
#define __PATH_H__
// version variable that will be substituted by cmake
// This shows an example using the @ variable type
const char* path = "@CMAKE_SOURCE_DIR@";
#endif