Closed brainos233 closed 1 year ago
By setting CMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER to prevent cmake use programs in sysroot and only use programs in host system root, this fixed https://github.com/renpy/renpy-build/pull/83#issuecomment-1666715399 and https://github.com/renpy/renpy-build/commit/f3d379928caec8b93b82417809a040972d921b40 is no longer nedded.
CMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER
Also fixed wrong separator character in CMAKE_FIND_ROOT_PATH, it should be ;.
CMAKE_FIND_ROOT_PATH
;
By setting
CMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER
to prevent cmake use programs in sysroot and only use programs in host system root, this fixed https://github.com/renpy/renpy-build/pull/83#issuecomment-1666715399 and https://github.com/renpy/renpy-build/commit/f3d379928caec8b93b82417809a040972d921b40 is no longer nedded.Also fixed wrong separator character in
CMAKE_FIND_ROOT_PATH
, it should be;
.