Closed shelbyd closed 1 year ago
I have also tried setting the target to libobs/libobs
, it fails with the same error but the "switch" is libobs/libobs.vcxproj
.
If I cd into obs-studio/build_x64
and run the exact command (AFAICT) "cmake" "--build" "." "--target" "libobs" "--config" "RelWithDebInfo" "--parallel" "24"
it works.
Seems like the obs-studio build is putting the configuration(?) into my-project/obs-studio/build_x64
and not cargo's OUT_DIR. If so, it makes sense that the target wouldn't be found.
I was able to get to the next error, that seems like an issue I need to resolve, by .define("OBS_CMAKE_VERSION", "3.0.0")
like the windows-x64
preset.
Trying to build
libobs
from https://github.com/obsproject/obs-studio on windows. I currently have the following build.rs:AFAICT, configure works fine, but the build fails with
MSBUILD : error MSB1009: Project file does not exist.
Full output is:
I have no idea what to do next. I am not particularly familiar with cmake and c-lang building in general. Spoiled by Rust. Totally possible I'm overlooking something obvious.
Thanks!