• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Compiling Help after Compille TFS 1.4.1 with CMAKE

Udun

Well-Known Member
Joined
Jan 5, 2012
Messages
199
Solutions
2
Reaction score
69
Hello all! I'm having an issue after successfully compiling TFS 1.4.1 from here:
Release The Forgotten Server 1.4.1 · otland/forgottenserver (https://github.com/otland/forgottenserver/releases/tag/v1.4.1)
I compiled it with CMake on Windows 10.
It seems to be having some problems establishing a connection with the database. If the database settings are empty in config.lua and I try to run it, the console opens for a couple of seconds and displays "Trying to establish connection with the database.... etc."

However, when I add the SQL user details (username, password, database name, etc.) to config.lua, it crashes immediately upon startup. I used the schema.sql file that comes with the distribution.

I have the following DLL files that were generated (could something external be missing? I have the "Otland" compiled version, and it has some extra files, but I don't really know. I'm trying to do this as cleanly as possible):

DLLs:
boost_filesystem-vc143-mt-x64-1_86.dll,
boost_iostreams-vc143-mt-x64-1_86.dll,
bz2.dll,
liblzma.dll,
libmariadb.dll,
lua51.dll,
pugixml.dll,
zlib1.dll,
zstd.dll

While compiling, I had the classic CryptoPP library error and then a MariaDB library error. I fixed these by modifying the CMakeLists.txt file. It now searches directly for the Vcpkg paths.

Here's my CMakeLists.txt file with my fixes to get rid of the CryptoPP and MariaDB errors:

Makefile:
cmake_minimum_required(VERSION 3.10)

set(CMAKE_DISABLE_SOURCE_CHANGES ON)
set(CMAKE_DISABLE_IN_SOURCE_BUILD ON)

project(tfs)

add_subdirectory(src)
add_executable(tfs ${tfs_SRC})

list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")

set_target_properties(tfs PROPERTIES CXX_STANDARD 17)
set_target_properties(tfs PROPERTIES CXX_STANDARD_REQUIRED ON)

if (NOT WIN32)
    add_compile_options(-Wall -Werror -pipe -fvisibility=hidden)
endif ()

set(CMAKE_CXX_FLAGS_PERFORMANCE "${CMAKE_CXX_FLAGS_RELEASE} -march=native")

if (CMAKE_COMPILER_IS_GNUCXX)
    add_compile_options(-fno-strict-aliasing)
endif ()

find_package(cryptopp CONFIG REQUIRED)

find_package(fmt 6.1.2 REQUIRED)

find_package(unofficial-libmariadb CONFIG QUIET)
if (unofficial-libmariadb_FOUND)
    set(MYSQL_CLIENT_LIBS "C:/vcpkg/installed/x64-windows/lib/libmariadb.lib")
else()
    find_package(MySQL REQUIRED)
endif()

find_package(Threads REQUIRED)
find_package(PugiXML REQUIRED)

if (DEFINED USE_LUAJIT AND NOT USE_LUAJIT)
    set(FORCE_LUAJIT ${USE_LUAJIT})
else()
    find_package(LuaJIT)
    set(FORCE_LUAJIT ${LuaJIT_FOUND})
endif()
option(USE_LUAJIT "Use LuaJIT" ${FORCE_LUAJIT})

if (FORCE_LUAJIT)
    if (APPLE)
        set(CMAKE_EXE_LINKER_FLAGS "-pagezero_size 10000 -image_base 100000000")
    endif()
else()
    find_package(Lua REQUIRED)
endif()

find_package(Boost 1.66.0 REQUIRED COMPONENTS date_time system filesystem iostreams)

include_directories(${Boost_INCLUDE_DIRS} ${Crypto++_INCLUDE_DIR} ${LUA_INCLUDE_DIR} ${MYSQL_INCLUDE_DIR} ${PUGIXML_INCLUDE_DIR})

target_link_libraries(tfs PRIVATE
        Boost::date_time
        Boost::system
        Boost::filesystem
        Boost::iostreams
        fmt::fmt
        ${CMAKE_THREAD_LIBS_INIT}
        cryptopp::cryptopp
        ${LUA_LIBRARIES}
        ${MYSQL_CLIENT_LIBS}
        ${PUGIXML_LIBRARIES}
        )

### INTERPROCEDURAL_OPTIMIZATION ###
cmake_policy(SET CMP0069 NEW)
include(CheckIPOSupported)
check_ipo_supported(RESULT result OUTPUT error)
if (result)
    message(STATUS "IPO / LTO enabled")
    set_target_properties(tfs PROPERTIES INTERPROCEDURAL_OPTIMIZATION True)
else()
    message(STATUS "IPO / LTO not supported: <${error}>")
endif ()
### END INTERPROCEDURAL_OPTIMIZATION ###

### Git Version ###
option(SKIP_GIT "Skip checking for git updates" OFF)
if(NOT SKIP_GIT)
    set(PRE_CONFIGURE_FILE "cmake/gitmetadata.h.in")
    set(POST_CONFIGURE_FILE "${CMAKE_CURRENT_BINARY_DIR}/gitmetadata.h")
    include(git_watcher)
    if(Git_FOUND)
        add_dependencies(tfs check_git)
        target_include_directories(tfs PRIVATE ${CMAKE_CURRENT_BINARY_DIR})
    endif()
endif()
### END Git Version ###

# Precompiled header
if (${CMAKE_VERSION} VERSION_GREATER "3.16.0")
    target_precompile_headers(tfs PUBLIC src/otpch.h)
else()
    include(cotire)
    set_target_properties(tfs PROPERTIES COTIRE_CXX_PREFIX_HEADER_INIT "src/otpch.h")
    set_target_properties(tfs PROPERTIES COTIRE_ADD_UNITY_BUILD FALSE)
    cotire(tfs)
endif()

Anybody knows what could be wrong?
Thanks in advance!
 
try running it from the server from command prompt to find out what the error is. For example your server is saved in c: drive open command prompt then type cd c: tfs.exe and press enter. This will allow you to see what's actually happening inside the command prompt.
 
You can always use Black Tek, was super easy to compile, it puts the exe file in the place it should be after compiling aswell so lots less to worry about, plus its currently up to date and more modern :)
 
Back
Top