forked from png85/json_spirit
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
86 additions
and
55 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 |
---|---|---|
|
@@ -31,4 +31,7 @@ json_map_demo/json_map_demo | |
json_test/json_test | ||
|
||
build/ | ||
.vs/ | ||
_build/ | ||
CMakeSettings.json | ||
.vscode/ |
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
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
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#ifndef JSON_SPIRIT_GLOBAL_H | ||
#define JSON_SPIRIT_GLOBAL_H | ||
|
||
#if (defined _WIN32) || (defined _WIN64) | ||
#define DECL_EXPORT __declspec(dllexport) | ||
#define DECL_IMPORT __declspec(dllimport) | ||
#else | ||
#define DECL_EXPORT | ||
#define DECL_IMPORT | ||
#endif | ||
|
||
#if defined(json_spirit_EXPORTS) | ||
# define json_spirit_EXPORT DECL_EXPORT | ||
#else | ||
# define json_spirit_EXPORT DECL_IMPORT | ||
#endif | ||
|
||
#endif |
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
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