mirror of
https://github.com/fedddddd/iw5-gsc-utils.git
synced 2026-08-01 04:40:34 +00:00
Delete gsc-tool
This commit is contained in:
Vendored
-1
Submodule deps/gsc-tool deleted from b859638703
Vendored
-62
@@ -1,62 +0,0 @@
|
|||||||
gsc_tool = {
|
|
||||||
source = path.join(dependencies.basePath, "gsc-tool"),
|
|
||||||
}
|
|
||||||
|
|
||||||
function gsc_tool.import()
|
|
||||||
links { "xsk-gsc-iw5-pc", "xsk-gsc-utils" }
|
|
||||||
gsc_tool.includes()
|
|
||||||
end
|
|
||||||
|
|
||||||
function gsc_tool.includes()
|
|
||||||
includedirs {
|
|
||||||
path.join(gsc_tool.source, "include"),
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
function gsc_tool.project()
|
|
||||||
project "xsk-gsc-utils"
|
|
||||||
kind "StaticLib"
|
|
||||||
language "C++"
|
|
||||||
|
|
||||||
files {
|
|
||||||
path.join(gsc_tool.source, "include/xsk/utils/*.hpp"),
|
|
||||||
path.join(gsc_tool.source, "src/utils/*.cpp"),
|
|
||||||
}
|
|
||||||
|
|
||||||
includedirs {
|
|
||||||
path.join(gsc_tool.source, "include"),
|
|
||||||
}
|
|
||||||
|
|
||||||
zlib.includes()
|
|
||||||
|
|
||||||
project "xsk-gsc-iw5-pc"
|
|
||||||
kind "StaticLib"
|
|
||||||
language "C++"
|
|
||||||
|
|
||||||
filter "action:vs*"
|
|
||||||
buildoptions "/Zc:__cplusplus"
|
|
||||||
filter {}
|
|
||||||
|
|
||||||
files {
|
|
||||||
path.join(gsc_tool.source, "include/xsk/stdinc.hpp"),
|
|
||||||
|
|
||||||
path.join(gsc_tool.source, "include/xsk/gsc/engine/iw5_pc.hpp"),
|
|
||||||
path.join(gsc_tool.source, "src/gsc/engine/iw5_pc.cpp"),
|
|
||||||
|
|
||||||
path.join(gsc_tool.source, "src/gsc/engine/iw5_pc_code.cpp"),
|
|
||||||
path.join(gsc_tool.source, "src/gsc/engine/iw5_pc_func.cpp"),
|
|
||||||
path.join(gsc_tool.source, "src/gsc/engine/iw5_pc_meth.cpp"),
|
|
||||||
path.join(gsc_tool.source, "src/gsc/engine/iw5_pc_token.cpp"),
|
|
||||||
|
|
||||||
path.join(gsc_tool.source, "src/gsc/*.cpp"),
|
|
||||||
|
|
||||||
path.join(gsc_tool.source, "src/gsc/common/*.cpp"),
|
|
||||||
path.join(gsc_tool.source, "include/xsk/gsc/common/*.hpp"),
|
|
||||||
}
|
|
||||||
|
|
||||||
includedirs {
|
|
||||||
path.join(gsc_tool.source, "include"),
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
table.insert(dependencies, gsc_tool)
|
|
||||||
+2
-3
@@ -8,8 +8,6 @@
|
|||||||
#pragma warning(disable: 4996)
|
#pragma warning(disable: 4996)
|
||||||
#pragma warning(disable: 26812)
|
#pragma warning(disable: 26812)
|
||||||
|
|
||||||
#include <xsk/gsc/engine/iw5_pc.hpp>
|
|
||||||
|
|
||||||
#define DLL_EXPORT extern "C" __declspec(dllexport)
|
#define DLL_EXPORT extern "C" __declspec(dllexport)
|
||||||
#define WIN32_LEAN_AND_MEAN
|
#define WIN32_LEAN_AND_MEAN
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
@@ -36,10 +34,11 @@
|
|||||||
|
|
||||||
using namespace std::literals;
|
using namespace std::literals;
|
||||||
|
|
||||||
|
#define __has_warning(...) 0
|
||||||
|
|
||||||
#include <gsl/gsl>
|
#include <gsl/gsl>
|
||||||
#include <MinHook.h>
|
#include <MinHook.h>
|
||||||
|
|
||||||
|
|
||||||
#include "utils/memory.hpp"
|
#include "utils/memory.hpp"
|
||||||
#include "utils/string.hpp"
|
#include "utils/string.hpp"
|
||||||
#include "utils/hook.hpp"
|
#include "utils/hook.hpp"
|
||||||
|
|||||||
Reference in New Issue
Block a user