Implemented basic game dll interaction

This commit is contained in:
Dynamitos
2023-01-29 18:58:59 +01:00
parent 2208ab438a
commit 0dce84459e
72 changed files with 1297 additions and 350 deletions
+23 -9
View File
@@ -1,11 +1,25 @@
{
"configurations": [
{
"name": "Debug",
"cmakeCommandArgs": "-DUSE_SUPERBUILD=OFF",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": []
}
]
"configurations": [
{
"name": "Debug",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"configurationType": "Debug",
"generator": "Visual Studio 17 2022 Win64",
"intelliSenseMode": "windows-msvc-x64",
"cmakeExecutable": "D:/Programms/CMake/bin/cmake.exe",
"inheritEnvironments": [],
"cmakeCommandArgs": "-DCMAKE_DEBUG_POSTFIX=d -DCMAKE_PLATFORM=x64 -DCMAKE_BUILD_TYPE=Debug",
"buildRoot": "bin/Debug"
},
{
"name": "Release",
"configurationType": "Release",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"generator": "Visual Studio 17 2022 Win64",
"intelliSenseMode": "windows-msvc-x64",
"inheritEnvironments": []
}
]
}