mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-28 18:09:42 -05:00
521a6d409c
Add the support of the ARCHIVER: prefix to offer a portable way to pass options to the archiver when the compiler is used as driver.
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;
|
|
}
|