Lines Matching refs:package

87 package = newpackage()
88 package.name = "lua"..lua_suffix.."_dll"
89 package.target = "lua"..lua_suffix
90 package.objdir = "../obj/"..package.name
91 package.language = "c"
92 package.kind = "dll"
93 package.defines = lua_defines
94 package.includepaths = { "../include" }
95 package.path = project.path
107 package.files = lua_files
110 tinsert(package.files, {"../src/lua"..lua_suffix..".def"})
115 package = newpackage()
116 package.name = "lua"..lua_suffix.."_lib"
117 package.target = "lua"..lua_suffix
118 package.objdir = "../obj/"..package.name
120 package.libdir = "../lib/static"
122 package.language = "c"
123 package.kind = "lib"
124 package.defines = lua_defines
125 package.files = lua_files
126 package.includepaths = { "../include" }
127 package.path = project.path
131 package = newpackage()
132 package.name = "lua"..lua_suffix.."_exe"
133 package.target = "lua"..lua_suffix
134 package.objdir = "../obj/"..package.name
135 package.language = "c"
136 package.kind = "exe"
137 package.defines = lua_defines
138 package.includepaths = { "../include" }
139 package.path = project.path
141 package.files =
145 fixPackagePath(package.files)
148 tinsert(package.files, {"../src/lua.rc"})
149 package.links = { "lua"..lua_suffix }
150 package.libpaths = { "../lib" }
151 package.linkoptions = { "setargv.obj" }
154 tinsert(package.links, {"readline", "history"})
157 package.links = { "lua"..lua_suffix, "m" }
158 package.libpaths = { "../lib" }
161 tinsert(package.links, {"readline", "history", "curses", "ncurses"})
162 tinsert(package.links, {"dl"})
163 package.linkoptions = { "-Wl,-E" }
167 package.linkoptions = { "-Wl,-E" }
171 tinsert(package.links, {"dl"})
177 package = newpackage()
178 package.name = "luac"..lua_suffix.."_exe"
179 package.target = "luac"..lua_suffix
180 package.objdir = "../obj/"..package.name
181 package.language = "c"
182 package.kind = "exe"
183 package.defines = lua_defines
184 package.includepaths = { "../include", "../src" }
185 package.path = project.path
187 package.files =
191 fixPackagePath(package.files)
194 tinsert(package.files, {"../src/lua.rc"})
195 package.links = { "lua"..lua_suffix }
196 package.libpaths = { "../lib/static" }
197 package.linkoptions = { "setargv.obj" }
199 package.links = { "lua"..lua_suffix, "m" }
200 package.libpaths = { "../lib" }
203 tinsert(package.links, {"dl"})
204 package.linkoptions = { "-Wl,-E" }
208 package.linkoptions = { "-Wl,-E" }
212 tinsert(package.links, {"dl"})
218 package = newpackage()
219 package.name = "bin2c"..lua_suffix.."_exe"
220 package.target = "bin2c"..lua_suffix
221 package.objdir = "../obj/"..package.name
222 package.language = "c"
223 package.kind = "exe"
224 package.linkflags = { "static-runtime" }
225 package.path = project.path
227 package.files =
233 tinsert(package.files, {"../src/lua.rc"})