summaryrefslogtreecommitdiffstats
path: root/premake5.lua
diff options
context:
space:
mode:
Diffstat (limited to 'premake5.lua')
-rw-r--r--premake5.lua14
1 files changed, 8 insertions, 6 deletions
diff --git a/premake5.lua b/premake5.lua
index 75b1b979..fd6da6ac 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -195,12 +195,6 @@ project "re3"
filter "platforms:*oal"
defines { "AUDIO_OAL" }
- includedirs { "openal-soft/include" }
- includedirs { "libsndfile/include" }
- includedirs { "mpg123/include" }
- libdirs { "openal-soft/libs/Win32" }
- libdirs { "libsndfile/lib" }
- libdirs { "mpg123/lib" }
filter {}
if(os.getenv("GTA_III_RE_DIR")) then
@@ -214,6 +208,14 @@ project "re3"
characterset ("MBCS")
targetextension ".exe"
+ filter "platforms:win*oal"
+ includedirs { "openal-soft/include" }
+ includedirs { "libsndfile/include" }
+ includedirs { "mpg123/include" }
+ libdirs { "openal-soft/libs/Win32" }
+ libdirs { "libsndfile/lib" }
+ libdirs { "mpg123/lib" }
+
filter "platforms:linux*oal"
links { "openal", "mpg123", "sndfile", "pthread" }