This Trac instance is not used for development anymore!

We migrated our development workflow to git and Gitea.
To test the future redirection, replace trac by ariadne in the page URL.

source: ps/trunk/build/premake/premake5/contrib/mbedtls/premake5.lua

Last change on this file was 20366, checked in by Itms, 7 years ago

Alpha 12 version of Premake 5, including prebuilt binary for Windows.
Directly taken from https://premake.github.io/.

Refs #3729.

File size: 269 bytes
RevLine 
[20366]1project "mbedtls-lib"
2 language "C"
3 kind "StaticLib"
4 warnings "off"
5
6 includedirs { 'include' }
7
8 if not _OPTIONS["no-zlib"] then
9 defines { 'MBEDTLS_ZLIB_SUPPORT' }
10 includedirs { '../zlib' }
11 end
12
13 files
14 {
15 "include/**.h",
16 "library/*.c"
17 }
18
19
Note: See TracBrowser for help on using the repository browser.