made lua scriptman (stub) shared

This commit is contained in:
Dexter Haslem 2013-09-14 23:49:42 -06:00
parent 41130702a1
commit 40b86daaa7
4 changed files with 12 additions and 8 deletions

View file

@ -36,10 +36,7 @@ $Project "Server (FF)"
{
$File "FF\ff_client.cpp"
$File "FF\ff_gameinterface.cpp"
$File "FF\ff_scriptman.cpp"
$File "FF\ff_scriptman.h"
$Folder "Libraries"
{
$Lib lua

View file

@ -2,13 +2,13 @@
/////////////////////////////////////////////////////////////////////////////
// includes
#include "cbase.h"
//#include "ff_scriptman.h"
#include "ff_scriptman.h"
//#include "ff_entity_system.h"
//#include "ff_luacontext.h"
//#include "ff_lualib.h"
//#include "ff_utils.h"
//#include "ff_item_flag.h"
#include "triggers.h"
//#include "triggers.h"
// engine
#include "filesystem.h"
@ -25,8 +25,9 @@
//#undef min
//#undef max
//
//// luabind
//#include "luabind/luabind.hpp"
// luabind
#include "lua.hpp"
#include "luabind/luabind.hpp"
//#include "luabind/object.hpp"
//#include "luabind/iterator_policy.hpp"

View file

@ -1,8 +1,14 @@
// VPC included in client/server FF VPCs containing all shared
// expects $SRCDIR macro to exist
$Project
{
$Folder "FF Shared"
{
$Folder "Lua"
{
$File "$SRCDIR\game\shared\ff\ff_scriptman.cpp"
$File "$SRCDIR\game\shared\ff\ff_scriptman.h"
}
}
}