This repository was archived by the owner on Nov 21, 2023. It is now read-only.
Replies: 1 comment
-
Hi @Hamoudy99
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
This should really be an issue, but issues have been turned off for this repo for some reason.
the CMakeList under
3rdpaty/DiligentBaseApp/CMakeLists.rxt
referencessrc/Win32/resources/Win32AppResource.rc
in a few places. however due to some of those references being in afunction()
cmake tried to look for the file relative to the root directory. It should really be looking for it in3rdparty/Diligent/
.fix:
replace all instances of
${SAMPLE_BASE_SOURCE_DIR}/src/Win32/resources/Win32AppResource.rc
with${SAMPLE_BASE_SOURCE_DIR}/3rdparty/DiligentBaseApp/src/Win32/resources/Win32AppResource.rc
Beta Was this translation helpful? Give feedback.
All reactions