diff options
Diffstat (limited to 'luasystem-scm-0.rockspec')
-rw-r--r-- | luasystem-scm-0.rockspec | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/luasystem-scm-0.rockspec b/luasystem-scm-0.rockspec index 74e301d..96f10ae 100644 --- a/luasystem-scm-0.rockspec +++ b/luasystem-scm-0.rockspec @@ -11,7 +11,7 @@ version = package_version.."-"..rockspec_revision source = { url = "git+https://github.com/"..github_account_name.."/"..github_repo_name..".git", branch = (package_version == "scm") and "master" or nil, - tag = (package_version ~= "scm") and package_version or nil, + tag = (package_version ~= "scm") and "v"..package_version or nil, } description = { @@ -39,13 +39,13 @@ local function make_platform(plat) linux = { "rt" }, unix = { }, macosx = { }, - win32 = { }, + win32 = { "advapi32", "winmm" }, mingw32 = { }, } return { modules = { ['system.core'] = { - sources = { 'src/core.c', 'src/compat.c', 'src/time.c', }, + sources = { 'src/core.c', 'src/compat.c', 'src/time.c', 'src/environment.c', 'src/random.c' }, defines = defines[plat], libraries = libraries[plat], }, |