Do not create symlink to executable on macOS too

This link in build directory pointed to non-existing file since we started to create application bundle with CMake
This commit is contained in:
alexey.lysiuk 2017-05-13 17:01:24 +03:00
parent 4554d90b1d
commit 27384fc70d
1 changed files with 1 additions and 1 deletions

View File

@ -1253,7 +1253,7 @@ if( MSVC )
create_default_target_launcher( zdoom WORKING_DIRECTORY ${ZDOOM_OUTPUT_DIR} )
endif()
if( NOT WIN32 )
if( NOT WIN32 AND NOT APPLE )
FILE( WRITE ${CMAKE_CURRENT_BINARY_DIR}/link-make "if [ ! -e ${ZDOOM_OUTPUT_DIR}/${ZDOOM_EXE_NAME} ]; then ln -sf ${CMAKE_CURRENT_BINARY_DIR}/${ZDOOM_EXE_NAME} ${ZDOOM_OUTPUT_DIR}/${ZDOOM_EXE_NAME}; fi" )
add_custom_command( TARGET zdoom POST_BUILD
COMMAND chmod +x ${CMAKE_CURRENT_BINARY_DIR}/link-make