premake5.lua 269 B

12345678910111213141516171819
  1. project "mbedtls-lib"
  2. language "C"
  3. kind "StaticLib"
  4. warnings "off"
  5. includedirs { 'include' }
  6. if not _OPTIONS["no-zlib"] then
  7. defines { 'MBEDTLS_ZLIB_SUPPORT' }
  8. includedirs { '../zlib' }
  9. end
  10. files
  11. {
  12. "include/**.h",
  13. "library/*.c"
  14. }