From 42c754192fa9946c00b840f3a6d5a4997922eaba Mon Sep 17 00:00:00 2001 From: Ivan Baravy Date: Wed, 27 Mar 2019 21:17:52 +0000 Subject: [PATCH] graph_tablelib: fix build git-svn-id: svn://kolibrios.org@7620 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/other/graph_tablelib/Tupfile.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/programs/other/graph_tablelib/Tupfile.lua b/programs/other/graph_tablelib/Tupfile.lua index cab645c260..1469e1faa0 100644 --- a/programs/other/graph_tablelib/Tupfile.lua +++ b/programs/other/graph_tablelib/Tupfile.lua @@ -1,5 +1,7 @@ -if tup.getconfig("NO_MSVC") ~= "" then return end +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("*.asm", "fasm %f %o", "%B.obj") +) compile_msvc{"*.cpp"} -link_msvc("graph")