Made cmake compilation possible on Windows.
This commit is contained in:
parent
2560fb40c6
commit
1cf6502be2
@ -83,7 +83,8 @@ if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
|
||||
add_definitions(-DCRYPTOPP_DISABLE_ASM)
|
||||
endif()
|
||||
|
||||
add_definitions(-DLUA_USE_DLOPEN)
|
||||
add_definitions(-DLUA_BUILD_AS_DLL)
|
||||
add_definitions(-DXML_STATIC)
|
||||
|
||||
add_subdirectory(lib/inifile/)
|
||||
add_subdirectory(lib/jsoncpp/)
|
||||
@ -106,10 +107,13 @@ else()
|
||||
add_flags("/Wall")
|
||||
endif()
|
||||
set(CMAKE_BUILD_TYPE "${CMAKE_BUILD_TYPE_BAK}")
|
||||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -rdynamic")
|
||||
set(CMAKE_EXE_LINKER_FLAGS_DEBUG "${CMAKE_EXE_LINKER_FLAGS_DEBUG} -rdynamic")
|
||||
set(CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} -rdynamic")
|
||||
set(CMAKE_EXE_LINKER_FLAGS_PROFILE "${CMAKE_EXE_LINKER_FLAGS_PROFILE} -rdynamic")
|
||||
|
||||
if (NOT WIN32)
|
||||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -rdynamic")
|
||||
set(CMAKE_EXE_LINKER_FLAGS_DEBUG "${CMAKE_EXE_LINKER_FLAGS_DEBUG} -rdynamic")
|
||||
set(CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} -rdynamic")
|
||||
set(CMAKE_EXE_LINKER_FLAGS_PROFILE "${CMAKE_EXE_LINKER_FLAGS_PROFILE} -rdynamic")
|
||||
endif()
|
||||
|
||||
add_subdirectory (src)
|
||||
|
||||
|
@ -2,10 +2,15 @@
|
||||
cmake_minimum_required (VERSION 2.6)
|
||||
project (expat)
|
||||
|
||||
include_directories ("${PROJECT_SOURCE_DIR}/../../src/")
|
||||
|
||||
file(GLOB SOURCE
|
||||
"*.c"
|
||||
)
|
||||
|
||||
# add headers to MSVC project files:
|
||||
if (WIN32)
|
||||
file(GLOB HEADERS "*.h")
|
||||
set(SOURCE ${SOURCE} ${HEADERS})
|
||||
source_group("Sources" FILES ${SOURCE})
|
||||
endif()
|
||||
|
||||
add_library(expat ${SOURCE})
|
||||
|
@ -8,12 +8,23 @@ file(GLOB SOURCE
|
||||
"src/*.c"
|
||||
)
|
||||
|
||||
if(${STATIC_LUA})
|
||||
add_library(lua ${SOURCE})
|
||||
else()
|
||||
add_library(lua SHARED ${SOURCE})
|
||||
list(REMOVE_ITEM SOURCE "${PROJECT_SOURCE_DIR}/src/lua.c" "${PROJECT_SOURCE_DIR}/src/luac.c")
|
||||
|
||||
# add headers to MSVC project files:
|
||||
if (WIN32)
|
||||
file(GLOB HEADERS "src/*.h")
|
||||
list(REMOVE_ITEM SOURCE "${PROJECT_SOURCE_DIR}/src/lua.h" "${PROJECT_SOURCE_DIR}/src/luac.h")
|
||||
set(SOURCE ${SOURCE} ${HEADERS})
|
||||
source_group("Sources" FILES ${SOURCE})
|
||||
endif()
|
||||
|
||||
if(UNIX)
|
||||
target_link_libraries(lua m dl)
|
||||
# Lua needs to be linked dynamically on Windows and statically on *nix, so that LuaRocks work
|
||||
if (WIN32)
|
||||
add_library(lua SHARED ${SOURCE})
|
||||
else()
|
||||
add_library(lua ${SOURCE})
|
||||
endif()
|
||||
|
||||
if (UNIX)
|
||||
target_link_libraries(m dl)
|
||||
endif()
|
||||
|
@ -2,13 +2,24 @@
|
||||
cmake_minimum_required (VERSION 2.6)
|
||||
project (sqlite)
|
||||
|
||||
include_directories ("${PROJECT_SOURCE_DIR}/../../src/")
|
||||
include_directories ("${PROJECT_SOURCE_DIR}/../")
|
||||
|
||||
file(GLOB SOURCE
|
||||
"*.c"
|
||||
)
|
||||
|
||||
|
||||
# add headers to MSVC project files:
|
||||
if (WIN32)
|
||||
file(GLOB HEADERS "src/*.h")
|
||||
list(REMOVE_ITEM SOURCE "${PROJECT_SOURCE_DIR}/src/lua.h" "${PROJECT_SOURCE_DIR}/src/luac.h")
|
||||
set(SOURCE ${SOURCE} ${HEADERS})
|
||||
source_group("Sources" FILES ${SOURCE})
|
||||
endif()
|
||||
|
||||
|
||||
add_library(sqlite ${SOURCE})
|
||||
|
||||
target_link_libraries(sqlite dl)
|
||||
if (UNIX)
|
||||
target_link_libraries(sqlite dl)
|
||||
endif()
|
||||
|
@ -18,7 +18,7 @@ extern "C"
|
||||
// fwd: SQLite/lsqlite3.c
|
||||
extern "C"
|
||||
{
|
||||
LUALIB_API int luaopen_lsqlite3(lua_State * L);
|
||||
int luaopen_lsqlite3(lua_State * L);
|
||||
}
|
||||
|
||||
// fwd: LuaExpat/lxplib.c:
|
||||
@ -309,7 +309,7 @@ void cLuaState::Push(const AStringVector & a_Vector)
|
||||
{
|
||||
ASSERT(IsValid());
|
||||
|
||||
lua_createtable(m_LuaState, a_Vector.size(), 0);
|
||||
lua_createtable(m_LuaState, (int)a_Vector.size(), 0);
|
||||
int newTable = lua_gettop(m_LuaState);
|
||||
int index = 1;
|
||||
for (AStringVector::const_iterator itr = a_Vector.begin(), end = a_Vector.end(); itr != end; ++itr, ++index)
|
||||
|
@ -49,9 +49,15 @@ else ()
|
||||
source_group("" FILES ${SOURCE})
|
||||
|
||||
# Precompiled headers (1st part)
|
||||
SET(PrecompiledBinary "$(IntDir)/Globals.pch")
|
||||
SET_SOURCE_FILES_PROPERTIES(
|
||||
Globals.cpp PROPERTIES COMPILE_FLAGS "/Yc\"Globals.h\" /Fp\"${PrecompiledBinary}\""
|
||||
Globals.cpp PROPERTIES COMPILE_FLAGS "/Yc\"Globals.h\""
|
||||
)
|
||||
# CMake cannot "remove" the precompiled header flags, so we use a dummy precompiled header compatible with just this one file:
|
||||
SET_SOURCE_FILES_PROPERTIES(
|
||||
Bindings/Bindings.cpp PROPERTIES COMPILE_FLAGS "/Yc\"string.h\" /Fp\"$(IntDir)/Bindings.pch\""
|
||||
)
|
||||
SET_SOURCE_FILES_PROPERTIES(
|
||||
"StackWalker.cpp LeakFinder.h" PROPERTIES COMPILE_FLAGS "/Yc\"Globals.h\""
|
||||
)
|
||||
endif()
|
||||
|
||||
@ -66,10 +72,11 @@ endif ()
|
||||
add_executable(${EXECUTABLE} ${SOURCE})
|
||||
|
||||
|
||||
# Precompiled headers (2nd part)
|
||||
if (WIN32)
|
||||
SET_TARGET_PROPERTIES(
|
||||
${EXECUTABLE} PROPERTIES COMPILE_FLAGS "/Yu\"Globals.h\" /FI\"${PrecompiledBinary}\" /Fp\"${PrecompiledBinary}\""
|
||||
OBJECT_DEPENDS "${PrecompiledBinary}"
|
||||
${EXECUTABLE} PROPERTIES COMPILE_FLAGS "/Yu\"Globals.h\""
|
||||
OBJECT_DEPENDS "$(IntDir)/$(TargetName.pch)"
|
||||
)
|
||||
endif ()
|
||||
|
||||
@ -79,4 +86,7 @@ if (NOT WIN32)
|
||||
target_link_libraries(${EXECUTABLE} Protocol Generating WorldStorage)
|
||||
target_link_libraries(${EXECUTABLE} Mobs Entities Simulator UI BlockEntities)
|
||||
endif ()
|
||||
target_link_libraries(${EXECUTABLE} md5 luaexpat iniFile jsoncpp cryptopp zlib lua)
|
||||
if (WIN32)
|
||||
target_link_libraries(${EXECUTABLE} expat tolualib ws2_32.lib Psapi.lib)
|
||||
endif()
|
||||
target_link_libraries(${EXECUTABLE} md5 luaexpat iniFile jsoncpp cryptopp zlib lua sqlite)
|
||||
|
@ -95,15 +95,11 @@
|
||||
*
|
||||
**********************************************************************/
|
||||
|
||||
#include <windows.h>
|
||||
#include <objidl.h> // Needed if compiled with "WIN32_LEAN_AND_MEAN"
|
||||
#include "Globals.h"
|
||||
|
||||
#include <tchar.h>
|
||||
#include <objidl.h> // Needed if compiled with "WIN32_LEAN_AND_MEAN"
|
||||
#include <crtdbg.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
|
||||
#include "LeakFinder.h"
|
||||
|
||||
@ -463,11 +459,11 @@ public:
|
||||
pHashEntry->nDataSize = nDataSize;
|
||||
pHashEntry->Next = NULL;
|
||||
#ifdef _M_IX86
|
||||
pHashEntry->pCallstackOffset = (LPVOID) min(context.Ebp, context.Esp);
|
||||
pHashEntry->pCallstackOffset = (LPVOID) std::min(context.Ebp, context.Esp);
|
||||
#elif _M_X64
|
||||
pHashEntry->pCallstackOffset = (LPVOID) min(context.Rdi, context.Rsp);
|
||||
pHashEntry->pCallstackOffset = (LPVOID) std::min(context.Rdi, context.Rsp);
|
||||
#elif _M_IA64
|
||||
pHashEntry->pCallstackOffset = (LPVOID) min(context.IntSp, context.RsBSP);
|
||||
pHashEntry->pCallstackOffset = (LPVOID) std::min(context.IntSp, context.RsBSP);
|
||||
#else
|
||||
#error "Platform not supported!"
|
||||
#endif
|
||||
@ -490,7 +486,7 @@ public:
|
||||
if (pHashEntry->nMaxStackSize > 0)
|
||||
{
|
||||
SIZE_T len = ((SIZE_T) pHashEntry->pStackBaseAddr + pHashEntry->nMaxStackSize) - (SIZE_T)pHashEntry->pCallstackOffset;
|
||||
bytesToRead = min(len, MAX_CALLSTACK_LEN_BUF);
|
||||
bytesToRead = std::min(len, (SIZE_T)MAX_CALLSTACK_LEN_BUF);
|
||||
}
|
||||
// Now read the callstack:
|
||||
if (ReadProcessMemory(GetCurrentProcess(), (LPCVOID) pHashEntry->pCallstackOffset, &(pHashEntry->pcCallstackAddr), bytesToRead, &(pHashEntry->nCallstackLen)) == 0)
|
||||
|
@ -73,10 +73,10 @@
|
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
**********************************************************************/
|
||||
#include <windows.h>
|
||||
|
||||
#include "Globals.h"
|
||||
|
||||
#include <tchar.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#pragma comment(lib, "version.lib") // for "VerQueryValue"
|
||||
#pragma warning(disable:4826)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user