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 __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
|