Fix problems with CMake install target
Handle DESDIR and spaces in the installation path correctly. Closes #22610. (cherry picked from commit 43d0eb48c15ab87ecb8d20a145f9f374f4ff745e)
This commit is contained in:
parent
34ab0ac7f0
commit
664d1617be
@ -42,8 +42,8 @@ else()
|
|||||||
install(DIRECTORY DESTINATION "bin")
|
install(DIRECTORY DESTINATION "bin")
|
||||||
install(CODE "execute_process( \
|
install(CODE "execute_process( \
|
||||||
COMMAND ${CMAKE_COMMAND} -E create_symlink \
|
COMMAND ${CMAKE_COMMAND} -E create_symlink \
|
||||||
${CMAKE_INSTALL_PREFIX}/lib/wx/config/${wxBUILD_FILE_ID} \
|
\"${CMAKE_INSTALL_PREFIX}/lib/wx/config/${wxBUILD_FILE_ID}\" \
|
||||||
${CMAKE_INSTALL_PREFIX}/bin/wx-config \
|
\"\$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/wx-config\" \
|
||||||
)"
|
)"
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
@ -30,17 +30,18 @@ if(wxUSE_XRC)
|
|||||||
BUNDLE DESTINATION "bin"
|
BUNDLE DESTINATION "bin"
|
||||||
)
|
)
|
||||||
|
|
||||||
if(NOT WIN32_MSVC_NAMING)
|
if(NOT WIN32_MSVC_NAMING AND wxBUILD_INSTALL)
|
||||||
if(IPHONE)
|
if(IPHONE)
|
||||||
set(EXE_SUFFIX ".app")
|
set(EXE_SUFFIX ".app")
|
||||||
else()
|
else()
|
||||||
set(EXE_SUFFIX ${CMAKE_EXECUTABLE_SUFFIX})
|
set(EXE_SUFFIX ${CMAKE_EXECUTABLE_SUFFIX})
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
wx_install(CODE "execute_process( \
|
# Don't use wx_install() here to preserve escaping.
|
||||||
|
install(CODE "execute_process( \
|
||||||
COMMAND ${CMAKE_COMMAND} -E create_symlink \
|
COMMAND ${CMAKE_COMMAND} -E create_symlink \
|
||||||
${CMAKE_INSTALL_PREFIX}/bin/${wxrc_output_name}${EXE_SUFFIX} \
|
\"${CMAKE_INSTALL_PREFIX}/bin/${wxrc_output_name}${EXE_SUFFIX}\" \
|
||||||
${CMAKE_INSTALL_PREFIX}/bin/wxrc${EXE_SUFFIX} \
|
\"\$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/wxrc${EXE_SUFFIX}\" \
|
||||||
)"
|
)"
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
Loading…
Reference in New Issue
Block a user