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

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"
)