From a34a44000049b2aa311407ea9b21aeef6545ef99 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Thu, 4 Feb 2016 22:10:50 +0100 Subject: [PATCH] Apparently, libtomcrypt explicitly ignores all tab sources. --- premake5.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/premake5.lua b/premake5.lua index a162e042..7036726c 100644 --- a/premake5.lua +++ b/premake5.lua @@ -213,17 +213,17 @@ workspace "iw4x" files { "./deps/libtomcrypt/src/**.c" } + -- seems like tab stuff can be omitted + removefiles { "./deps/libtomcrypt/src/**/*tab.c" } + -- remove incorrect files -- for some reason, they lack the necessary header files -- i might have to open a pull request which includes them removefiles { - "./deps/libtomcrypt/src/prngs/sober128tab.c", "./deps/libtomcrypt/src/pk/dh/dh_sys.c", - "./deps/libtomcrypt/src/ciphers/aes/aes_tab.c", "./deps/libtomcrypt/src/hashes/sha2/sha224.c", "./deps/libtomcrypt/src/hashes/sha2/sha384.c", - "./deps/libtomcrypt/src/hashes/whirl/whirltab.c", "./deps/libtomcrypt/src/encauth/ocb3/**.c", }