Premake: Fix missing links for BitMRC and Crypto++.

This commit is contained in:
/dev/urandom 2016-08-26 21:38:13 +02:00
parent 70a9cc62d8
commit ee46d2fe20
No known key found for this signature in database
GPG Key ID: 41322B973E0F295E
2 changed files with 10 additions and 1 deletions

View File

@ -13,10 +13,14 @@ function bitmrc.import()
sqlite3.import()
libcryptopp.import()
bitmrc.links()
bitmrc.includes()
end
function bitmrc.links()
links { "bitmrc" }
end
function bitmrc.includes()
if not bitmrc.settings then error("Run bitmrc.setup first") end

View File

@ -11,9 +11,14 @@ end
function libcryptopp.import()
if not libcryptopp.settings then error("Run libcryptopp.setup first") end
libcryptopp.links()
libcryptopp.includes()
end
function libcryptopp.links()
links { "libcryptopp" }
end
function libcryptopp.includes()
if not libcryptopp.settings then error("Run libcryptopp.setup first") end