Skip to content

Commit e5acdd4

Browse files
author
Nico Froehlich
committed
fix: move out engine
1 parent a10dc3e commit e5acdd4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+11
-51024
lines changed

.github/workflows/cmake.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
path: ${{github.workspace}}\build\_deps
2020
key: wincache
2121
- name: Configure CMake
22-
run: cmake ./TGEngine -B ${{github.workspace}}\build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
22+
run: cmake ./ -B ${{github.workspace}}\build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
2323
- name: Build
2424
run: cmake --build ${{github.workspace}}\build --config ${{env.BUILD_TYPE}}
2525
- name: Copy

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -306,3 +306,4 @@ dependencies/deps.zip
306306
/TGEngine/conan.lock
307307
/build
308308
.vscode/settings.json
309+
/out/build/x64-Debug

CMakeLists.txt

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
cmake_minimum_required (VERSION 3.12)
2+
3+
project ("TGEngine" LANGUAGES CXX)
4+
set(CMAKE_CXX_STANDARD 20)
5+
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded")
6+
7+
add_subdirectory(TGEngine)

TGEngine/CMakeSettings.json CMakeSettings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"name": "x64-Debug",
55
"generator": "Ninja",
66
"configurationType": "Debug",
7-
"inheritEnvironments": [ "clang_cl_x64" ],
7+
"inheritEnvironments": [ "msvc_x64_x64" ],
88
"buildRoot": "${projectDir}\\out\\build\\${name}",
99
"installRoot": "${projectDir}\\out\\install\\${name}",
1010
"buildCommandArgs": "",

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@
195195
same "printed page" as the copyright notice for easier
196196
identification within third-party archives.
197197

198-
Copyright 2017 Nico Fröhlich and M.Sc. Daniele Corallo
198+
Copyright 2017 Nico Fröhlich
199199

200200
Nico Fröhlich is also known as 'MrTroble'.
201201

TGEngine/CMakeLists.txt

-129
This file was deleted.

TGEngine/private/Error.cpp

-7
This file was deleted.

TGEngine/private/IO/IOModule.cpp

-121
This file was deleted.

TGEngine/private/TGEngine.cpp

-88
This file was deleted.

0 commit comments

Comments
 (0)