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.
 
 
 
 
 
 

7 lines
192 B

/* 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