Skip to content

Instantly share code, notes, and snippets.

@lexnewgate
Created September 25, 2017 10:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lexnewgate/c1f92896ba0f4a63dcf74d1a9d4c4a5f to your computer and use it in GitHub Desktop.
Save lexnewgate/c1f92896ba0f4a63dcf74d1a9d4c4a5f to your computer and use it in GitHub Desktop.
premake_lua5
workspace "lua5"
configurations "Debug"
targetdir "bin/debug"
configurations "Release"
targetdir "bin/release"
language "C"
files {
"src/*.c",
"src/*.h"
}
project "lua"
kind "ConsoleApp"
location "build/projects"
removefiles{
"src/luac.c"
}
project "luac"
kind "ConsoleApp"
location "build/projects"
removefiles{
"src/lua.c"
}
project "lualib"
kind "StaticLib"
location "build/projects"
project "luadll"
kind "SharedLib"
location "build/projects"
removefiles{
"src/lua.c",
"src/luac.c"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment