diff options
author | aap <aap@papnet.eu> | 2020-05-11 10:17:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-11 10:17:59 +0200 |
commit | 18b6905f247934a54b0d33e8d96dbad8483fa60f (patch) | |
tree | 745d1e458825357df0877e36e297e59cfe934e85 | |
parent | few fixes (diff) | |
parent | fix premake failing if not passing any action (such as with --help) (diff) | |
download | re3-18b6905f247934a54b0d33e8d96dbad8483fa60f.tar re3-18b6905f247934a54b0d33e8d96dbad8483fa60f.tar.gz re3-18b6905f247934a54b0d33e8d96dbad8483fa60f.tar.bz2 re3-18b6905f247934a54b0d33e8d96dbad8483fa60f.tar.lz re3-18b6905f247934a54b0d33e8d96dbad8483fa60f.tar.xz re3-18b6905f247934a54b0d33e8d96dbad8483fa60f.tar.zst re3-18b6905f247934a54b0d33e8d96dbad8483fa60f.zip |
Diffstat (limited to '')
-rw-r--r-- | premake5.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/premake5.lua b/premake5.lua index fbd2e011..458abc8f 100644 --- a/premake5.lua +++ b/premake5.lua @@ -196,5 +196,5 @@ project "re3" filter "platforms:*gl3_glfw*" libdirs { path.join(_OPTIONS["glewdir"], "lib/Release/Win32") } - libdirs { path.join(_OPTIONS["glfwdir"], "lib-" .. string.gsub(_ACTION, "vs", "vc")) } + libdirs { path.join(_OPTIONS["glfwdir"], "lib-" .. string.gsub(_ACTION or '', "vs", "vc")) } links { "opengl32", "glew32s", "glfw3" } |