The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
192 B
8 lines
192 B
9 years ago
|
/* With MSVC, the DLL created from this will not export any symbols
|
||
|
* without a module definitions file specified while linking */
|
||
|
#ifdef _MSC_VER
|
||
|
int somedllfunc() {
|
||
|
return 42;
|
||
|
}
|
||
|
#endif
|