-
Notifications
You must be signed in to change notification settings - Fork 2.7k
0.y.z #268
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
0.y.z #268
Conversation
This file contains hidden or 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
Currently JSONCPP_LIB_BUILD_SHARED variable is used as option to build static/shared libraries. The current patch uses standard CMake variables for this. Such a workaround is done in open-source-parsers#51 Current patch will make it generic.
Replace JSONCPP_LIB_BUILD_SHARED => BUILD_SHARED_LIBS Replace JSONCPP_LIB_BUILD_STATIC => BUILD_STATIC_LIBS Removed workaround open-source-parsers#51 Removed OPTION for shared/static in this file.
Replaced JSONCPP_LIB_BUILD_SHARED => BUILD_SHARED_LIBS Moved definition DJSON_DLL to line 11.
Replaced JSONCPP_LIB_BUILD_SHARED => BUILD_SHARED_LIBS Moved flag JSON_DLL to line no 8.
Replaced JSONCPP_LIB_BUILD_SHARED => BUILD_SHARED_LIBS
Replaced JSONCPP_LIB_BUILD_SHARED => BUILD_SHARED_LIBS Replaced JSONCPP_LIB_BUILD_STATIC => BUILD_STATIC_LIBS
Replace JSONCPP_LIB_BUILD_SHARED => BUILD_SHARED_LIBS
Replace JSONCPP_LIB_BUILD_SHARED => BUILD_SHARED_LIBS
Replace JSONCPP_LIB_BUILD_SHARED => BUILD_SHARED_LIBS
Use standard **cmake** variables, to support superprojects better. - `JSONCPP_LIB_BUILD_SHARED` -> `BUILD_SHARED_LIBS` - `JSONCPP_LIB_BUILD_STATIC` -> `BUILD_STATIC_LIBS`
Because this runs apt-get, it will not work as-is for OSX. So when we have OSX in Travis, we will have to wrap this somehow. See open-source-parsers#250. Closes open-source-parsers#222.
run valgrind in Travis CI
Use unsigned for DuplicationPolicy Fix open-source-parsers#252. This problem for **C++ Builder** was discovered and fixed by Victor Chen. See [this page via, in Chinese](http://www.cppfans.com/sdk/json/jsoncpp.asp).
- fix for "C++ Builder" IDE - Travis CI/AppVeyor - **cmake** tweak - fix memory leak in unit-test
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Important fix for "C++ Builder" IDE.