mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 05:11:15 -06:00
For executables with ENABLE_EXPORTS set, export all symbols when instructed to do so by WINDOWS_EXPORT_ALL_SYMBOLS.
9 lines
140 B
C
9 lines
140 B
C
#include <stdio.h>
|
|
|
|
extern int own_auto_export_function(int i);
|
|
|
|
void hello2()
|
|
{
|
|
printf("hello exec:%i", own_auto_export_function(41));
|
|
}
|