Re: Dirtsand on a VPS
Posted: Tue Oct 22, 2019 12:50 pm
PyHSPlasma is provided by libHSPlasma. I'm a little clueless on the login issue right now, sadly. Maybe something will come to mind soon...
Code: Select all
Selecting Windows SDK version 10.0.14393.0 to target Windows 10.0.18363.
CMake Error at CMakeLists.txt:48 (find_package):
By not providing "Findstring_theory.cmake" in CMAKE_MODULE_PATH this
project has asked CMake to find a package configuration file provided by
"string_theory", but CMake did not find one.
Could not find a package configuration file provided by "string_theory"
(requested version 2.0) with any of the following names:
string_theoryConfig.cmake
string_theory-config.cmake
Add the installation prefix of "string_theory" to CMAKE_PREFIX_PATH or set
"string_theory_DIR" to a directory containing one of the above files. If
"string_theory" provides a separate development package or SDK, be sure it
has been installed.
Configuring incomplete, errors occurred!
Code: Select all
cd C:\Path\to\string_theory
mkdir build-msvc
cmake -G "Visual Studio 14 2015" ..
(Open the generated .sln file and build the Release target)
Code: Select all
cmake . -D "OPENAL_INCLUDE_DIR=c:\Program Files (x86)\OpenAL 1.1 SDK\include" -D "OPENAL_LIBRARY=c:\Program Files (x86)\OpenAL 1.1 SDK\libs\Win32\OpenAL32.lib"
It looks like the devlibs layout changed slightly when this was done. The debug libraries are being put into another directory (hence the _d.lib). You don't want a Debug build though. Tell Visual Studio to build the Release target by changing the dropdown option at the top to "Release" -- it should currently say "Debug".Surta wrote:86>LINK : fatal error LNK1104: cannot open file 'python27_d.lib'