Created
September 25, 2017 10:13
-
-
Save lexnewgate/c1f92896ba0f4a63dcf74d1a9d4c4a5f to your computer and use it in GitHub Desktop.
premake_lua5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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