forked from KolibriOS/kolibrios
10 lines
426 B
Lua
10 lines
426 B
Lua
|
if tup.getconfig("NO_FASM") ~= "" or tup.getconfig("NO_MSVC") ~= "" then return end
|
||
|
HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../../.." or tup.getconfig("HELPERDIR")
|
||
|
tup.include(HELPERDIR .. "/use_msvc.lua")
|
||
|
tup.append_table(OBJS,
|
||
|
tup.foreach_rule("memcmp.asm", "fasm %f %o", "%B.obj")
|
||
|
)
|
||
|
table.insert(OBJS, "lzma_unpack.obj") -- ??? it doesn't work after fasm recompilation
|
||
|
compile_msvc{"*.cpp"}
|
||
|
link_msvc("fara")
|