You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 line
622B

  1. {
  2. "$schema": "../res/toolchain-schema.json",
  3. "compiler_id": "msvc",
  4. "flags": [
  5. "/Zc:preprocessor",
  6. "/std:c++latest",
  7. "/DNOMINMAX",
  8. // OpenSSL headers:
  9. "/Iexternal/OpenSSL/include",
  10. ],
  11. "link_flags": [
  12. "rpcrt4.lib",
  13. // Networking:
  14. "Ws2_32.lib",
  15. // Deps for OpenSSL:
  16. "AdvApi32.lib",
  17. "Crypt32.lib",
  18. "User32.lib",
  19. // Link in our external OpenSSL:
  20. "/link",
  21. "/LibPath:external/OpenSSL/lib",
  22. "libssl.lib",
  23. "libcrypto.lib",
  24. ],
  25. // "debug": true,
  26. "optimize": true
  27. }