Chuck Atkins 9784af1b50 CMP0065: Restrict the use of CMAKE_SHARED_LIBRARY_LINK_<LANG>_FLAGS
This new policy restricts the addition of the shared library link flags
to executables only when the ENABLE_EXPORTS property is set to True.
2015-09-21 10:12:13 -04:00

8 lines
95 B
C

#include <stdio.h>
int main(int argc, char **argv)
{
printf("Hello World\n");
return 0;
}