| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- package.name = "drawstuff"
- package.language = "c++"
- package.objdir = "obj/drawstuff"
- package.links = {}
- -- Append a "d" to the debug version of the libraries
- for k,v in ipairs(project.configs) do
- if (string.find(v, "Debug") ~= nil) then
- package.config[v].target = "drawstuffd"
- end
- end
- -- Output is placed in a directory named for the target toolset.
- package.path = options["target"]
- -- Package Build Settings
- local dll_defines =
- {
- "DS_DLL",
- "USRDLL"
- }
- local lib_defines =
- {
- "DS_LIB"
- }
- if (not options["enable-shared-only"]) then
- package.config["DebugSingleLib"].kind = "lib"
- package.config["ReleaseSingleLib"].kind = "lib"
- table.insert(package.config["DebugSingleLib"].defines, lib_defines)
- table.insert(package.config["ReleaseSingleLib"].defines, lib_defines)
- table.insert(package.config["DebugSingleLib"].defines, "dSINGLE")
- table.insert(package.config["ReleaseSingleLib"].defines, "dSINGLE")
- package.config["DebugDoubleLib"].kind = "lib"
- package.config["ReleaseDoubleLib"].kind = "lib"
- table.insert(package.config["DebugDoubleLib"].defines, lib_defines)
- table.insert(package.config["ReleaseDoubleLib"].defines, lib_defines)
- table.insert(package.config["DebugDoubleLib"].defines, "dDOUBLE")
- table.insert(package.config["ReleaseDoubleLib"].defines, "dDOUBLE")
- end
- if (not options["enable-static-only"]) then
- package.config["DebugSingleDLL"].kind = "dll"
- package.config["ReleaseSingleDLL"].kind = "dll"
- table.insert(package.config["DebugSingleDLL"].defines, dll_defines)
- table.insert(package.config["ReleaseSingleDLL"].defines, dll_defines)
- table.insert(package.config["DebugSingleDLL"].defines, "dSINGLE")
- table.insert(package.config["ReleaseSingleDLL"].defines, "dSINGLE")
- package.config["DebugDoubleDLL"].kind = "dll"
- package.config["ReleaseDoubleDLL"].kind = "dll"
- table.insert(package.config["DebugDoubleDLL"].defines, dll_defines)
- table.insert(package.config["ReleaseDoubleDLL"].defines, dll_defines)
- table.insert(package.config["DebugDoubleDLL"].defines, "dDOUBLE")
- table.insert(package.config["ReleaseDoubleDLL"].defines, "dDOUBLE")
- end
- package.includepaths =
- {
- "../../include",
- "../../ode/src"
- }
- -- disable VS2005 CRT security warnings
- if (options["target"] == "vs2005") then
- table.insert(package.defines, "_CRT_SECURE_NO_DEPRECATE")
- end
- -- Build Flags
- package.config["DebugSingleLib"].buildflags = { }
- package.config["DebugSingleDLL"].buildflags = { }
- package.config["ReleaseSingleDLL"].buildflags = { "optimize-speed", "no-symbols", "no-frame-pointer" }
- package.config["ReleaseSingleLib"].buildflags = { "optimize-speed", "no-symbols", "no-frame-pointer" }
- package.config["DebugDoubleLib"].buildflags = { }
- package.config["DebugDoubleDLL"].buildflags = { }
- package.config["ReleaseDoubleDLL"].buildflags = { "optimize-speed", "no-symbols", "no-frame-pointer" }
- package.config["ReleaseDoubleLib"].buildflags = { "optimize-speed", "no-symbols", "no-frame-pointer" }
- if (options.target == "vs6" or options.target == "vs2002" or options.target == "vs2003") then
- for k,v in ipairs(project.configs) do
- if (string.find(v, "Lib") ~= nil) then
- table.insert(package.config[v].buildflags, "static-runtime")
- end
- end
- end
- -- Libraries
- local windows_libs =
- {
- "user32",
- "opengl32",
- "glu32",
- "winmm",
- "gdi32"
- }
- local x11_libs =
- {
- "X11",
- "GL",
- "GLU"
- }
- if (windows) then
- table.insert(package.links, windows_libs)
- else
- table.insert(package.links, x11_libs)
- end
- -- Files
- package.files =
- {
- matchfiles("../../include/drawstuff/*.h"),
- "../../drawstuff/src/internal.h",
- "../../drawstuff/src/drawstuff.cpp"
- }
- if (windows) then
- table.insert(package.defines, "WIN32")
- table.insert(package.files, "../../drawstuff/src/resource.h")
- table.insert(package.files, "../../drawstuff/src/resources.rc")
- table.insert(package.files, "../../drawstuff/src/windows.cpp")
- else
- table.insert(package.files, "../../drawstuff/src/x11.cpp")
- end
|