-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot build, no rule to make target 'libdxcompiler.so'. #98
Comments
It looks like you passed paths to for the dxcompiler because CMake configuration failed for you. Run Alternatively, build everything yourself by configuring with |
Thank you! DirectXShaderCompiler-binaries contained the missing library, I changed all of the path directories to reference the new binaries directory and it worked. CMake command (larger than necessary, just trying to cover every base) for anyone who's interested:
|
I have cloned the project and its submodules completely. I run the following cmake command:
This executes without errors. When I go to build the project, however, using either
cmake --build build --parallel $(nproc)
orcd build && make
, I receive the following error(s):Contents of the generated makefile
build/Makefile
:Basic observation, the Makefile lacks any reference to anything related to DirectX in any way, perhaps I haven't set everything up correctly? The given directories exist, but
libdxcompiler.so
hasn't been compiled yet (the missing rule). I apologize if I'm missing something really obvious, I'm new to CMake so a simple error on my part wouldn't surprise me.The text was updated successfully, but these errors were encountered: