Skip to content
Snippets Groups Projects
Commit 9a6c46f8 authored by dg's avatar dg
Browse files

lpop

git-svn-id: http://svn.net-core.org/repos/t-engine4@1150 51575b47-30f0-44d4-a5cc-537603b46e54
parent 5568eab3
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,11 @@ newoption {
value = "VM_Type",
description = "Forces compilation in 32bits mode, allowing to use the lua jit",
}
newoption {
trigger = "relpath",
value = "VM_Type",
description = "Links libraries relative to the application path for redistribution",
}
_OPTIONS.lua = _OPTIONS.lua or "default"
......@@ -20,6 +25,7 @@ solution "TEngine"
objdir "obj"
defines {"GLEW_STATIC"}
if _OPTIONS.force32bits then buildoptions{"-m32"} linkoptions{"-m32"} libdirs{"/usr/lib32"} end
if _OPTIONS.relpath then linkoptions{"-Wl,-rpath -Wl,\\\$\$ORIGIN/lib "} end
includedirs {
"src",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment