aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbasisbit <basisbit@b956fd51-792f-4845-bead-9b4dfca2ff2c>2015-08-15 12:21:35 +0000
committerbasisbit <basisbit@b956fd51-792f-4845-bead-9b4dfca2ff2c>2015-08-15 12:21:35 +0000
commit13482c657cf3a134edfb9c646c585818cce62038 (patch)
tree6369fc4178a8bc4e193fbeebac8dfa8ac3c0dd5e
parent05e3322d99d280609e4d2eb9874018cdc62d6552 (diff)
downloadusdx-13482c657cf3a134edfb9c646c585818cce62038.tar.gz
usdx-13482c657cf3a134edfb9c646c585818cce62038.tar.xz
usdx-13482c657cf3a134edfb9c646c585818cce62038.zip
*added missing LUA constants and FFMPEG_Path for Windows builds
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@3119 b956fd51-792f-4845-bead-9b4dfca2ff2c
-rw-r--r--src/config-win.inc11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/config-win.inc b/src/config-win.inc
index 46e1f336..826e3864 100644
--- a/src/config-win.inc
+++ b/src/config-win.inc
@@ -4,9 +4,20 @@
{* Libraries *}
+{$IF Defined(IncludeConstants)}
+ LUA_LIB_NAME = 'lua';
+ LUA_VERSION_INT = 5001004;
+ LUA_VERSION_RELEASE = '4';
+ LUA_VERSION_MINOR = '1';
+ LUA_VERSION_MAJOR = '5';
+ LUA_VERSION = '5.1.4';
+{$IFEND}
+
{$DEFINE HaveFFmpeg}
{$IF Defined(HaveFFmpeg) and Defined(IncludeConstants)}
+ FFMPEG_DIR = 'ffmpeg';
+
av__codec = 'avcodec-52';
LIBAVCODEC_VERSION_MAJOR = 52;
LIBAVCODEC_VERSION_MINOR = 67;