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()
|
sqlite3.import()
|
||||||
libcryptopp.import()
|
libcryptopp.import()
|
||||||
|
bitmrc.links()
|
||||||
bitmrc.includes()
|
bitmrc.includes()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function bitmrc.links()
|
||||||
|
links { "bitmrc" }
|
||||||
|
end
|
||||||
|
|
||||||
function bitmrc.includes()
|
function bitmrc.includes()
|
||||||
if not bitmrc.settings then error("Run bitmrc.setup first") end
|
if not bitmrc.settings then error("Run bitmrc.setup first") end
|
||||||
|
|
||||||
|
@ -11,9 +11,14 @@ end
|
|||||||
function libcryptopp.import()
|
function libcryptopp.import()
|
||||||
if not libcryptopp.settings then error("Run libcryptopp.setup first") end
|
if not libcryptopp.settings then error("Run libcryptopp.setup first") end
|
||||||
|
|
||||||
|
libcryptopp.links()
|
||||||
libcryptopp.includes()
|
libcryptopp.includes()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function libcryptopp.links()
|
||||||
|
links { "libcryptopp" }
|
||||||
|
end
|
||||||
|
|
||||||
function libcryptopp.includes()
|
function libcryptopp.includes()
|
||||||
if not libcryptopp.settings then error("Run libcryptopp.setup first") end
|
if not libcryptopp.settings then error("Run libcryptopp.setup first") end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user