2014-09-12 17:15:23 +02:00
|
|
|
if tup.getconfig("NO_FASM") ~= "" or tup.getconfig("NO_MSVC") ~= "" then return end
|
|
|
|
HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../.." or tup.getconfig("HELPERDIR")
|
2017-12-20 01:51:00 +01:00
|
|
|
tup.include(HELPERDIR .. "/use_fasm.lua")
|
2014-09-12 17:15:23 +02:00
|
|
|
tup.include(HELPERDIR .. "/use_msvc.lua")
|
|
|
|
|
|
|
|
compile_msvc{"ac97snd/ac97wav.c", "ac97snd/crt.c"}
|
2017-12-20 01:51:00 +01:00
|
|
|
OBJS += tup.foreach_rule({"ac97snd/k_lib.asm", "ufmod-config.asm"}, FASM .. " %f %o", "%B.obj")
|
2014-09-12 17:15:23 +02:00
|
|
|
OBJS += "mpg/mpg.lib"
|
|
|
|
OBJS += "../../develop/sdk/trunk/sound/src/sound.lib"
|
|
|
|
link_msvc("ac97snd.bin")
|