diff options
author | Sara Golemon <sara.golemon@mongodb.com> | 2019-02-12 22:14:59 +0000 |
---|---|---|
committer | Sara Golemon <sara.golemon@mongodb.com> | 2019-02-14 23:19:17 +0000 |
commit | 9d402c82594ad179d2b177027aec462422a4b4fa (patch) | |
tree | 87712d5ea54c57701141ed0fe842bffc0081323a /src/mongo/db/SConscript | |
parent | 814b1f8237db9ecb27dd0ffa96f11edd58bac73e (diff) | |
download | mongo-9d402c82594ad179d2b177027aec462422a4b4fa.tar.gz |
SERVER-39501 Migrate windows options to IDL
Diffstat (limited to 'src/mongo/db/SConscript')
-rw-r--r-- | src/mongo/db/SConscript | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mongo/db/SConscript b/src/mongo/db/SConscript index 86c80a6ab81..a15037350be 100644 --- a/src/mongo/db/SConscript +++ b/src/mongo/db/SConscript @@ -408,6 +408,17 @@ env.Library( ], ) +if env.TargetOSIs('windows'): + env.Library( + target='windows_options', + source=[ + env.Idlc('windows_options.idl')[0], + ], + LIBDEPS_PRIVATE=[ + '$BUILD_DIR/mongo/util/options_parser/options_parser', + ], + ) + env.Clone().InjectModule("enterprise").Library( target="server_options_servers", source=[ |