2014-09-12 19:15:23 +04:00
|
|
|
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")
|
2018-09-10 14:08:00 +03:00
|
|
|
if tup.getconfig("LANG") == "ru"
|
2018-09-10 17:15:32 +03:00
|
|
|
then CFLAGS = CFLAGS .. "/DLANG_RUS"
|
|
|
|
else CFLAGS = CFLAGS .. "/DLANG_ENG"
|
2018-09-10 14:08:00 +03:00
|
|
|
end
|
2018-09-10 17:08:15 +03:00
|
|
|
compile_msvc{"kosilka.cpp", "KosFile.cpp", "kosSyst.cpp", "mcsmemm.cpp"}
|
2014-09-12 19:15:23 +04:00
|
|
|
link_msvc("kosilka")
|