-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #178 from DOCGroup/elliottc/more_databases
Support for more databases and utilities
- Loading branch information
Showing
13 changed files
with
81 additions
and
9 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// -*- MPC -*- | ||
project: boost_base { | ||
includes += $(MONGODB_ROOT)/include/bsoncxx/v_noabi | ||
libpaths += $(MONGODB_ROOT)/lib | ||
lit_libs += bsoncxx bson-1.0 | ||
} |
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,7 @@ | ||
// -*- MPC -*- | ||
project: boost_date_time, openssl, velocypack { | ||
macros += NGHTTP2_STATICLIB | ||
includes += $(FUERTE_ROOT)/include | ||
libpaths += $(FUERTE_ROOT)/lib | ||
lit_libs += fuerte llhttp nghttp2 | ||
} |
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,7 +1,5 @@ | ||
// -*- MPC -*- | ||
project: boost_base { | ||
includes += $(MONGODB_ROOT)/include/mongocxx/v_noabi \ | ||
$(MONGODB_ROOT)/include/bsoncxx/v_noabi | ||
libpaths += $(MONGODB_ROOT)/lib | ||
lit_libs += mongocxx mongoc-1.0 bsoncxx bson-1.0 | ||
project: bsoncxx { | ||
includes += $(MONGODB_ROOT)/include/mongocxx/v_noabi | ||
lit_libs += mongocxx mongoc-1.0 | ||
} |
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,3 +1,3 @@ | ||
project { | ||
project: boost_base { | ||
includes += $(MSGPACK_ROOT)/include | ||
} |
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,22 @@ | ||
// -*- MPC -*- | ||
project { | ||
Define_Custom(Schema) { | ||
automatic_in = 1 | ||
automatic_out = 1 | ||
command = $(OS_ROOTDIR)/bin/ossg | ||
commandflags = -I $(OS_ROOTDIR)/include \ | ||
-asdb <%input_noext%>.adb -asof <%input_noext%>.obj | ||
inputext = .imp | ||
generic_outputext = .obj, .adb | ||
keyword schemaflags = commandflags | ||
} | ||
|
||
includes += $(OS_ROOTDIR)/include | ||
libpaths += $(OS_ROOTDIR)/lib | ||
libs += ostore | ||
|
||
specific(prop:microsoft) { | ||
macros += _CRT_SECURE_NO_WARNINGS | ||
exceptionhandling = Async | ||
} | ||
} |
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,6 @@ | ||
// -*- MPC -*- | ||
project: boost_base, msgpack { | ||
includes += $(OP_LITE_ROOT) | ||
libpaths += $(OP_LITE_ROOT)/lib | ||
libs += op_lite | ||
} |
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,10 @@ | ||
// -*- MPC -*- | ||
project { | ||
includes += $(RDFOX_ROOT)/include | ||
libpaths += $(RDFOX_ROOT)/lib | ||
lit_libs += libRDFox | ||
|
||
specific(prop:microsoft) { | ||
exceptionhandling = Async | ||
} | ||
} |
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,12 @@ | ||
// -*- MPC -*- | ||
project { | ||
includes += $(REDIS_ROOT)/include | ||
libpaths += $(REDIS_ROOT)/lib | ||
lit_libs += redis++ | ||
libs += hiredis | ||
|
||
specific(prop:microsoft) { | ||
LanguageStandard = stdcpp17 | ||
DisableSpecificWarnings += 4200 | ||
} | ||
} |
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,10 @@ | ||
// -*- MPC -*- | ||
project { | ||
includes += $(VELOCYPACK_ROOT)/include | ||
libpaths += $(VELOCYPACK_ROOT)/lib | ||
lit_libs += velocypack | ||
|
||
specific(prop:microsoft) { | ||
LanguageStandard = stdcpp20 | ||
} | ||
} |
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