Add new files for nlohmann/json to Xcode project

This commit is contained in:
Tristan Penman 2016-02-02 08:07:19 -08:00
parent 491bafe256
commit 4c384420c7

View File

@ -21,6 +21,7 @@
6A725F4A17F6404100D6B2FF /* test_validator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AC18D3517CC86E000FE0EC9 /* test_validator.cpp */; };
6A9E1856194DC44B003F1C4C /* test_fetch_document_callback.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AA8A5DA17F8BDCA002728A0 /* test_fetch_document_callback.cpp */; };
6AA822FF1C3F38D4007103A7 /* test_picojson_adapter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AA822FE1C3F38D4007103A7 /* test_picojson_adapter.cpp */; };
6AB2D0EF1C610ACB007F0EFF /* test_nlohmann_json_adapter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AB2D0EE1C610ACB007F0EFF /* test_nlohmann_json_adapter.cpp */; };
6AB8FE8717E6A56F0028E147 /* external_schema.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AB8FE8617E6A56F0028E147 /* external_schema.cpp */; };
6AB8FE8D17E6A57E0028E147 /* libboost_regex-mt.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 6A477F8417D6BCBB0013571C /* libboost_regex-mt.dylib */; };
6AD3490118FF56FB004BDEE7 /* gtest_main.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6AF70B3718FE71F700342325 /* gtest_main.cc */; };
@ -186,6 +187,9 @@
6AA822FE1C3F38D4007103A7 /* test_picojson_adapter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = test_picojson_adapter.cpp; sourceTree = "<group>"; };
6AA8A5DA17F8BDCA002728A0 /* test_fetch_document_callback.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = test_fetch_document_callback.cpp; sourceTree = "<group>"; };
6AAF16D21BC744BE002CB1AF /* picojson_adapter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = picojson_adapter.hpp; sourceTree = "<group>"; };
6AB2D0EE1C610ACB007F0EFF /* test_nlohmann_json_adapter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = test_nlohmann_json_adapter.cpp; sourceTree = "<group>"; };
6AB2D0F01C610AE0007F0EFF /* nlohmann_json_adapter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = nlohmann_json_adapter.hpp; sourceTree = "<group>"; };
6AB2D0F11C610AED007F0EFF /* nlohmann_json_utils.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = nlohmann_json_utils.hpp; sourceTree = "<group>"; };
6AB8FE8617E6A56F0028E147 /* external_schema.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = external_schema.cpp; sourceTree = "<group>"; };
6AB8FE9117E6A57E0028E147 /* custom_schema */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = custom_schema; sourceTree = BUILT_PRODUCTS_DIR; };
6AB8FE9217E6BE770028E147 /* test_jsoncpp_adapter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = test_jsoncpp_adapter.cpp; sourceTree = "<group>"; };
@ -596,6 +600,7 @@
6AB8FEBB17E6EF910028E147 /* file_utils.hpp */,
6A5C5D271C5B13AB004F40ED /* json11_utils.hpp */,
6AB8FEBC17E6EF9A0028E147 /* jsoncpp_utils.hpp */,
6AB2D0F11C610AED007F0EFF /* nlohmann_json_utils.hpp */,
6A5C5D281C5B13C3004F40ED /* picojson_utils.hpp */,
6AB8FEBD17E77C360028E147 /* property_tree_utils.hpp */,
6A869A3017CD8A92006864FA /* rapidjson_utils.hpp */,
@ -738,6 +743,7 @@
6A506D1F1AF88E5D00C2C818 /* test_json_pointer.cpp */,
6A5C5D291C5B13D4004F40ED /* test_json11_adapter.cpp */,
6AB8FE9217E6BE770028E147 /* test_jsoncpp_adapter.cpp */,
6AB2D0EE1C610ACB007F0EFF /* test_nlohmann_json_adapter.cpp */,
6AA822FE1C3F38D4007103A7 /* test_picojson_adapter.cpp */,
6AB8FEC417E92B100028E147 /* test_property_tree_adapter.cpp */,
6AC18D3917CC874100FE0EC9 /* test_rapidjson_adapter.cpp */,
@ -819,6 +825,7 @@
6AC18C1717CC1BE100FE0EC9 /* frozen_value.hpp */,
6A5C5D261C5B139B004F40ED /* json11_adapter.hpp */,
6AC78BE017C5FC6A00674114 /* jsoncpp_adapter.hpp */,
6AB2D0F01C610AE0007F0EFF /* nlohmann_json_adapter.hpp */,
6AAF16D21BC744BE002CB1AF /* picojson_adapter.hpp */,
6AC78BE117C5FC6A00674114 /* property_tree_adapter.hpp */,
6AC78BE217C5FC6A00674114 /* rapidjson_adapter.hpp */,
@ -1080,6 +1087,7 @@
6A725F4717F6404100D6B2FF /* test_jsoncpp_adapter.cpp in Sources */,
6A725F4817F6404100D6B2FF /* test_property_tree_adapter.cpp in Sources */,
6AD3490118FF56FB004BDEE7 /* gtest_main.cc in Sources */,
6AB2D0EF1C610ACB007F0EFF /* test_nlohmann_json_adapter.cpp in Sources */,
6A5C5D2A1C5B13D4004F40ED /* test_json11_adapter.cpp in Sources */,
6AA822FF1C3F38D4007103A7 /* test_picojson_adapter.cpp in Sources */,
6A506D201AF88E5D00C2C818 /* test_json_pointer.cpp in Sources */,
@ -1211,6 +1219,7 @@
"../thirdparty/gtest-1.7.0",
"../thirdparty/json11-2016-01-26",
"../thirdparty/jsoncpp-0.9.4/include",
"../thirdparty/nlohmann-json-1.1.0",
"../thirdparty/picojson-1.3.0",
"../thirdparty/rapidjson-0.1/include",
../include,
@ -1236,6 +1245,7 @@
"../thirdparty/gtest-1.7.0",
"../thirdparty/json11-2016-01-26",
"../thirdparty/jsoncpp-0.9.4/include",
"../thirdparty/nlohmann-json-1.1.0",
"../thirdparty/picojson-1.3.0",
"../thirdparty/rapidjson-0.1/include",
../include,
@ -1387,6 +1397,7 @@
6A5C5D4A1C5B151F004F40ED /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
6AB8FE8E17E6A57E0028E147 /* Build configuration list for PBXNativeTarget "custom_schema" */ = {
isa = XCConfigurationList;