Ivan Shynkarenka
Ivan Shynkarenka
``` pip3 install gil git clone https://github.com/chronoxor/CppServer.git cd CppServer gil update cd build ./unix.sh ```
I use this CppServer.cmake file to include CppServer project: ``` if(NOT TARGET cppserver) # Module flag set(CPPSERVER_MODULE Y) # Module subdirectory add_subdirectory("CppServer") # Module folder set_target_properties(cppserver PROPERTIES FOLDER CppServer) endif()...
Fixed in CppCommon!
Do you have Windows SDK installed? When you run `CppServer\build\VisualStudio>01-generate.bat` do you see in output: ``` -- Found OpenSSL: Z:/projects/Projects/CppServer/modules/OpenSSL/VS/lib/libcrypto.lib (found version "1.1.1c") -- Found Crypt: C:/Program Files (x86)/Windows Kits/10/Lib/10.0.18362.0/um/x64/Crypt32.Lib...
According to FindCrypt.cmake: ``` find_path(CRYPT_INCLUDE_DIR wincrypt.h) if(MSVC) find_library(CRYPT_LIBRARY crypt32.lib) else() find_library(CRYPT_LIBRARY crypt32) endif() ``` wincrypt.h and crypt32.lib should be available via INCLUDE, LIB environment variables. You may try to build...
You can use Windows Environment Variables manager for this:  You can try to append the following paths to the variables: ``` INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\MSVC\14.22.27905\include;C:\Program Files (x86)\Microsoft Visual...
Windows 7 is not supported due to old API
You may contact me with telegram using account @chronoxor to discuss your requirements
Fixed! Thanks for reporting!
I see no problem with it. You'll see no difference until you measure nanoseconds :)