mirror of
https://github.com/reactos/CMake.git
synced 2025-02-10 22:02:11 +00:00
![Matt McCormick](/assets/img/avatar_default.png)
Add CROSSCOMPILING_EMULATOR target property for executables. This is used by subsequent patches to run exectuables created for the target system when crosscompiling. The property is initialized by the CMAKE_CROSSCOMPILING_EMULATOR variable when defined.
16 lines
184 B
C
16 lines
184 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char * argv[] )
|
|
{
|
|
int ii;
|
|
|
|
printf("Command:");
|
|
for(ii = 1; ii < argc; ++ii)
|
|
{
|
|
printf(" \"%s\"", argv[ii]);
|
|
}
|
|
printf("\n");
|
|
|
|
return 42;
|
|
}
|