mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 22:50:26 -06:00
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;
|
|
}
|