mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-20 21:28:23 -05:00
303cd7037a
This already worked in other generators. Also add a test case. Fixes: #17314
9 lines
127 B
C
9 lines
127 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
printf("%s\n", argv[1]);
|
|
return EXIT_SUCCESS;
|
|
}
|