Premake: Fix missing links for BitMRC and Crypto++.
This commit is contained in:
parent
70a9cc62d8
commit
ee46d2fe20
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user