client almost builds

This commit is contained in:
d1str4ught
2025-08-19 00:20:40 +02:00
parent 4be475f111
commit be56f3f31a
1090 changed files with 126610 additions and 14032 deletions

View File

@@ -1 +1,5 @@
## add_subdirectory(python)
add_subdirectory(DirectX)
add_subdirectory(Granny)
add_subdirectory(MilesSoundSystem)
add_subdirectory(Python)
add_subdirectory(SpeedTree)

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5a66658b9c126663cee89ea72d3a2674965502d53cec038b5832200a0def67ec
size 108527068

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3dd619792b7ca77ebd959cd24f0e4f67ae62cc7f307f4134136bd9ac496dab7b
size 35693064

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:75c7bd3a787286559c08d5f4919a81f63c5ca41b53c60e7e394132035f5680db
size 25656

11
extern/library/DirectX/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1,11 @@
add_library(DirectX STATIC IMPORTED GLOBAL)
set_target_properties(DirectX PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${CMAKE_SOURCE_DIR}/extern/include"
)
set_target_properties(DirectX PROPERTIES
IMPORTED_LOCATION_DEBUG "${CMAKE_CURRENT_LIST_DIR}/d3d8_debug.lib"
IMPORTED_LOCATION_RELEASE "${CMAKE_CURRENT_LIST_DIR}/d3d8.lib"
IMPORTED_LOCATION_RELWITHDEBINFO "${CMAKE_CURRENT_LIST_DIR}/d3d8.lib"
)

3
extern/library/DirectX/d3d8.lib vendored Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:26132869fed2b5de881be1857622d9a3bc757b22afa27b86796bc13689ed0c9b
size 11843118

3
extern/library/DirectX/d3d8_debug.lib vendored Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fe7ebb4a07f74b4ac5dfc3444a95f172ccde2caa93a2299138c3d76e8cd2d698
size 6864590

6
extern/library/Granny/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1,6 @@
add_library(Granny STATIC IMPORTED GLOBAL)
set_target_properties(Granny PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${CMAKE_SOURCE_DIR}/extern/include"
IMPORTED_LOCATION "${CMAKE_CURRENT_LIST_DIR}/granny2_static.lib"
)

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c8de47645ce41cfe9e37d15bb26fb0bc919ba1b648e6be7746730c37d8671a5e
size 6861212

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:baf411faddb5b2de8ea2271927b2ef4158ff356c739eff1c3488d87c659fe800
size 11222

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0844a16fcc20b5304d939e9d528d711ea9d365214220030370be7ad83adc6557
size 12670

View File

@@ -0,0 +1,6 @@
add_library(MilesSoundSystem STATIC IMPORTED GLOBAL)
set_target_properties(MilesSoundSystem PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${CMAKE_SOURCE_DIR}/extern/include"
IMPORTED_LOCATION "${CMAKE_CURRENT_LIST_DIR}/mss64.lib"
)

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ea999a3c3f5e22bea81b4f2658dfbe074fa1c63d3073de789735fc383cbe0f05
size 3145894

11
extern/library/Python/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1,11 @@
add_library(Python STATIC IMPORTED GLOBAL)
set(LIB_FILES
"${CMAKE_CURRENT_LIST_DIR}/python27_static.lib"
)
set_target_properties(Python PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${CMAKE_SOURCE_DIR}/extern/include"
INTERFACE_LINK_LIBRARIES "${LIB_FILES}"
INTERFACE_COMPILE_DEFINITIONS "Py_NO_ENABLE_SHARED=1"
)

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c7261c3ede08fe1963384cf5539e212f1d51105ecdee80a91d7372e8de08a372
size 7157372

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c656e122de36227efbda6f97e07ab788c1f405511091414ef8d38f0cd6f83043
size 7396

11
extern/library/SpeedTree/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1,11 @@
add_library(SpeedTree STATIC IMPORTED GLOBAL)
set_target_properties(SpeedTree PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${CMAKE_SOURCE_DIR}/extern/include"
)
set_target_properties(SpeedTree PROPERTIES
IMPORTED_LOCATION_DEBUG "${CMAKE_CURRENT_LIST_DIR}/speedtree_staticd.lib"
IMPORTED_LOCATION_RELEASE "${CMAKE_CURRENT_LIST_DIR}/speedtree_static.lib"
IMPORTED_LOCATION_RELWITHDEBINFO "${CMAKE_CURRENT_LIST_DIR}/speedtree_static.lib"
)

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4dd85879aa7ec1f7f9f9c0bd1f93e4ab826a099c6ef2f448c7ee2defa5a8a7f4
size 2709882

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b945136c652ea8ade2f2cf1a862962caf9ecdcbf9f67a3563aa2c0578d3afd92
size 13014262

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:beb0dcd40e7ee46158b6291b72d51a66c106d46dd87f6227802e17c9836be7e8
size 50622

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5f410143bdc4fd43a2de62f03837aae135009952c08a1dfef19dcf2d898e75f7
size 2466

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:39a8e21889a7c1f0b966f04a9e7d392de14ddebb3e091dfa1e5ce3e19564fc28
size 2150226

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6e9e94271645a16f5dee111cf380eaea1dd03bafcfab676d4198cfd7900de036
size 4540

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c276f14f0e8e786dc5f1f1af3f762e53249d7e8ce8c57332a1d58592ededcef3
size 22810

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:73a147b9ff6e4527e543e9a436cb244adcdae4ad89b89df51a0634f9a8c13682
size 104752

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:df37172800688fb7e3f5fdfdb74356dd1b3cf96f832f0853216e5cc77d5eefcf
size 3700

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a04eea25f5ba565d454f01d0504fe5d3461f021a2c3a0a4f470cf53ce399a5a5
size 79654

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:365b2d2f9e5fcb6b2b781b5c118414b87823da1f6a8e19df5b6fe898af44bc95
size 79898

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c03ebed2de0210f5e4af954296700931e24f25594b3d59410efb69232b2fb079
size 257226

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:48e6301c7d725e7c558700c391bc556ab2e8ea91bef779a88dcd9a006817749a
size 6718502

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2f630464308603985fae531ae58e997ad0ec003130957e1d3b22b228ad1c5f61
size 5318

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:78622695d317226f035cbbb46a2185e0b5ab20a4875c65c6ef8ef9455a525334
size 2962

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d698d7f30033058eb3542ca6705fd2d2f6203607463c5bc6ddf55d041d794157
size 3238136

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fdcfae3572f4405ae992ea01653a27029642215db1e310d3ab933866101d4b94
size 83986

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c6b9f8e393b74fe52daf33e923d91b3ff4e49e09d732b442822620056c27c253
size 891130

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8cde4b0f6b6c10ac906ca10d03d0146de8778e65adbb1ba6c0fb5868056f6818
size 877720

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f1edbb78a5c23d1dbf72e420a061ceb90b83b002d01ccd27a491f8dd4575c755
size 613004

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9d3d6603970a02ecbe8b69e8aac22dc7b6865c878235009be598d80266035702
size 674620

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:15c1f897a23835de4a58f7c3a99d414d2a3f048b311e8ecc3f4bb299c45d9574
size 172584

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1b8373619f4c7408f0a56686eac82a658d52a356350365f3ca143f7b08852fd9
size 266796

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f1edbb78a5c23d1dbf72e420a061ceb90b83b002d01ccd27a491f8dd4575c755
size 613004

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9d3d6603970a02ecbe8b69e8aac22dc7b6865c878235009be598d80266035702
size 674620

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c104b81ab7a85536c79c8aa937afaddfeef667c4b6762bb83d9e4f787670aed7
size 1892

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5ffde5a8eb5b5dc6f0e7e36ae10faca72e8b6f3be081b06148e8e47a7b41c990
size 263786

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2c25dec860e5c7c322cf6d6c00e79083a6a5c17d92e5807edd7a41ca0558930a
size 161898

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0d22d92c0a58b6bd83a409c24cf380795b7d86c74078c45718134d5e66388bdf
size 232322

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8f767d590ab1821cfcd9db39086ddaaa64ad3bdc3d1d3b37a67455a3b3466456
size 240414

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7026a267078cf2a4b98f6b0abaff33cb9a0f2a65a65f98dcbc829dcd2dc74e55
size 262536