diff --git a/binaries/system/aken.sys b/binaries/system/aken.sys index e4805d0f1a..828af03c1d 100644 Binary files a/binaries/system/aken.sys and b/binaries/system/aken.sys differ diff --git a/binaries/system/aken64.sys b/binaries/system/aken64.sys index a6f63bb5ea..1401c4ddda 100644 Binary files a/binaries/system/aken64.sys and b/binaries/system/aken64.sys differ diff --git a/build/premake/extern_libs.lua b/build/premake/extern_libs.lua index 9eda5457dd..14268a2ddc 100644 --- a/build/premake/extern_libs.lua +++ b/build/premake/extern_libs.lua @@ -18,7 +18,7 @@ local function add_extern_lib_paths(extern_lib) if OS == "windows" or extern_lib == 'cxxtest' or extern_lib == 'fcollada' then tinsert(package.includepaths, libraries_dir .. extern_lib .. "/include") end - tinsert(package.libpaths, libraries_dir .. extern_lib .. "/lib") + tinsert(package.libpaths, libraries_dir .. extern_lib .. "/lib") end @@ -71,6 +71,9 @@ extern_lib_defs = { devil = { unix_names = { "IL", "ILU" }, }, + detours = { + dbg_suffix = "", + }, directx = { win_names = { "ddraw", }, dbg_suffix = "", diff --git a/build/premake/premake.lua b/build/premake/premake.lua index 7c4b0405fd..a4cbbcb059 100755 --- a/build/premake/premake.lua +++ b/build/premake/premake.lua @@ -388,7 +388,8 @@ function setup_all_libs () "libjpg", "dbghelp", "directx", - "cryptopp" + "cryptopp", + "detours" } setup_static_lib_package("lowlevel", source_dirs, extern_libs, {}) sysdep_dirs = { @@ -425,6 +426,7 @@ used_extern_libs = { "dbghelp", "cxxtest", "directx", + "detours" } -- Bundles static libs together with main.cpp and builds game executable. @@ -458,7 +460,7 @@ function setup_main_exe () end package.linkoptions = { - -- required for win.cpp's init mechanism + -- required for winit.cpp's init mechanism "/ENTRY:entry", -- delay loading of various Windows DLLs (not specific to any of the