• Dear Cerberus X User!

    As we prepare to transition the forum ownership from Mike to Phil (TripleHead GmbH), we need your explicit consent to transfer your user data in accordance with our amended Terms and Rules in order to be compliant with data protection laws.

    Important: If you accept the amended Terms and Rules, you agree to the transfer of your user data to the future forum owner!

    Please read the new Terms and Rules below, check the box to agree, and click "Accept" to continue enjoying your Cerberus X Forum experience. The deadline for consent is April 5, 2024.

    Do not accept the amended Terms and Rules if you do not wish your personal data to be transferred to the future forum owner!

    Accepting ensures:

    - Continued access to your account with a short break for the actual transfer.

    - Retention of your data under the same terms.

    Without consent:

    - You don't have further access to your forum user account.

    - Your account and personal data will be deleted after April 5, 2024.

    - Public posts remain, but usernames indicating real identity will be anonymized. If you disagree with a fictitious name you have the option to contact us so we can find a name that is acceptable to you.

    We hope to keep you in our community and see you on the forum soon!

    All the best

    Your Cerberus X Team

Fixed Build fails for v2020-05-09 — Desktop Game — debug mode (msvc)

olive

Member
3rd Party Module Dev
Tutorial Author
Patreon Bronze
Joined
Jul 17, 2017
Messages
76
I just downloaded the newest release from itch & building for desktop debug is failing.

Html5 and desktop release are still working fine.

Here's the end of the console for bouncyaliens demo:

Code:
ResourceCompile:
  C:\Program Files (x86)\Windows Kits\8.1\bin\x86\rc.exe /l"0x0409" /nologo /fo"C:\Cerberus\examples\mojo2\bouncyaliens\bouncyaliens.buildv2020-05-09\glfw3\msvc\build\Debug\CerberusGame.res" CerberusGame.rc 
CerberusGame.rc(54): error RC2135: file not found: ..\..\cerberus.ico [C:\Cerberus\examples\mojo2\bouncyaliens\bouncyaliens.buildv2020-05-09\glfw3\msvc\CerberusGame.vcxproj]
CerberusGame.rc(55): error RC2135: file not found: ..\..\cerberus.ico [C:\Cerberus\examples\mojo2\bouncyaliens\bouncyaliens.buildv2020-05-09\glfw3\msvc\CerberusGame.vcxproj]

Done Building Project "C:\Cerberus\examples\mojo2\bouncyaliens\bouncyaliens.buildv2020-05-09\glfw3\msvc\CerberusGame.vcxproj" (default targets) -- FAILED.
Done Building Project "C:\Cerberus\examples\mojo2\bouncyaliens\bouncyaliens.buildv2020-05-09\glfw3\msvc\CerberusGame.sln" (default targets) -- FAILED.
Build FAILED.

"C:\Cerberus\examples\mojo2\bouncyaliens\bouncyaliens.buildv2020-05-09\glfw3\msvc\CerberusGame.sln" (default target) (1) ->
"C:\Cerberus\examples\mojo2\bouncyaliens\bouncyaliens.buildv2020-05-09\glfw3\msvc\CerberusGame.vcxproj" (default target) (2) ->
(ResourceCompile target) -> 

  CerberusGame.rc(54): error RC2135: file not found: ..\..\cerberus.ico [C:\Cerberus\examples\mojo2\bouncyaliens\bouncyaliens.buildv2020-05-09\glfw3\msvc\CerberusGame.vcxproj]
  CerberusGame.rc(55): error RC2135: file not found: ..\..\cerberus.ico [C:\Cerberus\examples\mojo2\bouncyaliens\bouncyaliens.buildv2020-05-09\glfw3\msvc\CerberusGame.vcxproj]

    0 Warning(s)
    2 Error(s)

Time Elapsed 00:00:05.92
TRANS FAILED: Error executing '"C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\MSBuild.exe" /p:Configuration=Debug', return code=1
Done.
 
@wick:
Work around.
Open the targets/glfw/msvc/CerberusGame.rc and change the icon paths to:
Code:
IDI_ICON1               ICON                    "..\\cerberus.ico"
GLFW_ICON               ICON                    "..\\cerberus.ico"
Don't forget to delete the old build directory.
 
Yup, I have just uploaded a new version. Was that what you ment before @dawlane ?
Yes. Though I think that you better check that any user icons still work.
I would suggest that the create and copy icon code is placed into it's own module and not part of transcc directly.
 
Back
Top Bottom