mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 22:59:56 -05:00
aba1c9d172
It is now possible to use the `LINKER:` prefix in `LINK_LIBRARIES` and `INTERFACE_LINK_LIBRARIES` target properties. Fixes: #26318
14 lines
154 B
C
14 lines
154 B
C
|
|
#include "stdio.h"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
int i;
|
|
|
|
for (i = 1; i < argc; i++)
|
|
printf("%s ", argv[i]);
|
|
printf("\n");
|
|
|
|
return 0;
|
|
}
|