Skip to content
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

Update embedded jsoncpp from unk version to 0.10.6 + move libs to lib/ instead of src/ #5473

Merged
merged 9 commits into from
Apr 2, 2017
Prev Previous commit
Next Next commit
Make jsoncpp more compliant with its amalgamate
Jsoncpp cpp file should be upper, make the library like it does in amalgamate
  • Loading branch information
nerzhul committed Mar 28, 2017
commit d939f034956324cde866902d63f4c6c42f37311f
2 changes: 1 addition & 1 deletion cmake/Modules/FindJson.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ if(NOT JSONCPP_FOUND)
message(STATUS "Using bundled JSONCPP library.")
set(JSON_INCLUDE_DIR ${PROJECT_SOURCE_DIR}/jsoncpp)
set(JSON_LIBRARY jsoncpp)
add_subdirectory(jsoncpp/json)
add_subdirectory(jsoncpp)
endif()

File renamed without changes.
2 changes: 1 addition & 1 deletion src/jsoncpp/json/jsoncpp.cpp → src/jsoncpp/jsoncpp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ license you like.



#include "json.h"
#include "json/json.h"

#ifndef JSON_IS_AMALGAMATION
#error "Compile with -I PATH_TO_JSON_DIRECTORY"
Expand Down