-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
run-make: enable msvc for redundant-libs
- Loading branch information
1 parent
6a2cd0d
commit 1d01209
Showing
2 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
void foo1() {} | ||
void foo2() {} | ||
#ifdef _WIN32 | ||
#define DllExport __declspec(dllexport) | ||
#else | ||
#define DllExport | ||
#endif | ||
|
||
DllExport void foo1() {} | ||
DllExport void foo2() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters