You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes to prevent Policy warnings from syntax errors in CMake code files.
File: ./cmake/FindGLEW.cmake
insert: SET(PROGRAMFILESX86 "PROGRAMFILES(X86)")
before: SET( GLEW_SEARCH_PATHS
and
change: "$ENV{PROGRAMFILES(X86)}/GLEW" # WINDOWS
to: "$ENV{${PROGRAMFILESX86}}/GLEW" # WINDOWS
File: ./cmake/FindSDL2.cmake
insert: SET(PROGRAMFILESX86 "PROGRAMFILES(X86)")
before: SET( SDL2_SEARCH_PATHS
and
change: "$ENV{PROGRAMFILES(X86)}/SDL2" # WINDOWS
to: "$ENV{${PROGRAMFILESX86}}/SDL2" # WINDOWS
File: ./cmake/FindASSIMP.cmake
insert: SET(PROGRAMFILESX86 "PROGRAMFILES(X86)")
before: SET( ASSIMP_SEARCH_PATHS
and
change: "$ENV{PROGRAMFILES(X86)}/ASSIMP" # WINDOWS
to: "$ENV{${PROGRAMFILESX86}}/ASSIMP" # WINDOWS
Fixes to prevent program execution abort on free(): invalid pointer.
File: ./src/rendering/texture.h, line 60
from: void operator=(Texture texture);
to: Texture& operator=(Texture other) noexcept;
Fixes to prevent Policy warnings from syntax errors in CMake code files.
Fixes to prevent program execution abort on free(): invalid pointer.
File: ./src/rendering/texture.cpp, lines 207-213
replace:
Originally posted by @gedeschaines in #45 (comment)
The text was updated successfully, but these errors were encountered: