mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-25 15:49:08 -05:00
60fb5a5792
Introduce the following genex: * <LANG>_COMPILER_LINKER_ID * <LANG>_COMPILER_LINKER_FRONTEND_VARIANT Fixes: #26991
11 lines
137 B
C
11 lines
137 B
C
|
|
#include <string.h>
|
|
|
|
#define xstr(s) str(s)
|
|
#define str(s) #s
|
|
|
|
int main(void)
|
|
{
|
|
return strcmp(xstr(VAR), xstr(GENEX)) == 0 ? 0 : 1;
|
|
}
|